summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorYulqen <246857+yulqen@users.noreply.github.com>2024-06-03 15:32:46 +0100
committerGitHub <noreply@github.com>2024-06-03 15:32:46 +0100
commit8eeab2793878fb9f93c1ec8a8806c9abb9188262 (patch)
tree3dcf43e84b29fa3d735dfbccff11e19d59d5ef22 /Dockerfile
parent7cc8cbffff703eb0efd72959146eb133e20c4e0a (diff)
parentf22b6d933a138bd97b00bce4d1607cda0e8593ef (diff)
Merge pull request #59 from defencedigital/postgres-migration
Postgres migration
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index fd516c6..cde9fce 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,9 @@
-FROM python:3-slim
+FROM python:3.12.3-slim-bullseye
# Add application sources
USER 0
-RUN apt update && apt install -y --no-install-recommends libpq-dev libgcrypt20-dev build-essential
+RUN apt update && apt install -y --no-install-recommends libpq-dev build-essential
WORKDIR /app