summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYulqen <246857+yulqen@users.noreply.github.com>2024-05-23 20:39:25 +0100
committerGitHub <noreply@github.com>2024-05-23 20:39:25 +0100
commit0c88ccbb77bc8d16015a8d96c5782d00d573e3f6 (patch)
treebebe4762caa834af5f1df3913afe28833e634c25
parent2c9ec18402ecefa6b23144f1e9dc637169a6e62b (diff)
parentca2a690ea18d78b069e0edaa5b57dada60d1505a (diff)
Merge pull request #56 from defencedigital/postgres-migration
Changed final django image to python312-slim in attempt to handle lib…
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index bba15d4..53550fd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,7 +18,7 @@ RUN pip install -U "pip>=24.0.0" && \
python manage.py collectstatic --noinput
# Final stage
-FROM python:3.11-slim
+FROM python:3.12
# Set working directory
WORKDIR /app