diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-06-03 15:32:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 15:32:46 +0100 |
commit | 8eeab2793878fb9f93c1ec8a8806c9abb9188262 (patch) | |
tree | 3dcf43e84b29fa3d735dfbccff11e19d59d5ef22 /Dockerfile | |
parent | 7cc8cbffff703eb0efd72959146eb133e20c4e0a (diff) | |
parent | f22b6d933a138bd97b00bce4d1607cda0e8593ef (diff) |
Merge pull request #59 from defencedigital/postgres-migration
Postgres migration
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |