summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYulqen <246857+yulqen@users.noreply.github.com>2024-06-03 15:16:05 +0100
committerGitHub <noreply@github.com>2024-06-03 15:16:05 +0100
commit7cc8cbffff703eb0efd72959146eb133e20c4e0a (patch)
treeb3ece67c25226369a9689ba787a6ba44936e60ef
parentbfa7ea4cb41692618621d9ac15e24955f56f1a11 (diff)
parent84b90c675dd788957957373ba5737b169e537ab0 (diff)
Merge pull request #58 from defencedigital/postgres-migration
Add requirement on libgcrypt20-dev to try to fix libgcrypt error
Diffstat (limited to '')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index b4e9f59..fd516c6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,7 @@ FROM python:3-slim
# Add application sources
USER 0
-RUN apt update && apt install -y --no-install-recommends libpq-dev build-essential
+RUN apt update && apt install -y --no-install-recommends libpq-dev libgcrypt20-dev build-essential
WORKDIR /app