Skip to content

Commit 3a1d805

Browse files
authored
Upgrade docker image to latest debian stable (bookworm) (#994)
* Upgrade docker image to latest debian stable (bookworm) * Do not upgrade base OS image with apt
1 parent f995334 commit 3a1d805

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Dockerfile

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Copyright (c) 2020 Ricardo Garcia Silva
1111
# Copyright (c) 2020 Massimo Di Stefano
1212
# Copyright (c) 2020 Tom Kralidis
13-
# Copyright (c) 2020 Angelos Tzotsos
13+
# Copyright (c) 2024 Angelos Tzotsos
1414
#
1515
# Permission is hereby granted, free of charge, to any person
1616
# obtaining a copy of this software and associated documentation
@@ -36,7 +36,7 @@
3636
#
3737
# =================================================================
3838

39-
FROM python:3.10-slim-buster
39+
FROM python:3.10-slim-bookworm
4040
4141

4242
# Build arguments
@@ -45,8 +45,7 @@ LABEL maintainer="[email protected],[email protected],[email protected]"
4545
ARG BUILD_DEV_IMAGE="false"
4646

4747
RUN apt-get update --yes && \
48-
apt-get upgrade --yes && \
49-
apt-get install --yes --no-install-recommends ca-certificates libexpat1 python3-setuptools && \
48+
apt-get install --yes --no-install-recommends ca-certificates python3-setuptools && \
5049
rm -rf /var/lib/apt/lists/*
5150

5251
RUN adduser --uid 1000 --gecos '' --disabled-password pycsw

0 commit comments

Comments
 (0)