Skip to content

Commit

Permalink
Merge pull request #953 from maykinmedia/feature/2006-dockerfile-apt-…
Browse files Browse the repository at this point in the history
…upgrade

🐳 [#2006] Use apt-get upgrade in Dockerfile stage 3
  • Loading branch information
alextreme authored Jan 15, 2024
2 parents 940dc33 + 364288d commit 1108340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ FROM python:3.9-slim-buster
# Note: mime-support becomes media-types in Debian Bullseye (required for correctly serving mime-types for images)
# Also install the dependencies for GeoDjango

RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
procps \
vim \
postgresql-client \
Expand Down

0 comments on commit 1108340

Please sign in to comment.