diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-23 20:38:25 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-23 20:38:25 +0100 |
commit | ca2a690ea18d78b069e0edaa5b57dada60d1505a (patch) | |
tree | bebe4762caa834af5f1df3913afe28833e634c25 /Dockerfile | |
parent | 2c9ec18402ecefa6b23144f1e9dc637169a6e62b (diff) |
Changed final django image to python312-slim in attempt to handle libgcrypt build error on OpenShift
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |