summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-06-03 15:14:47 +0100
committerMatthew Lemon <y@yulqen.org>2024-06-03 15:14:47 +0100
commit84b90c675dd788957957373ba5737b169e537ab0 (patch)
treeb3ece67c25226369a9689ba787a6ba44936e60ef /Dockerfile
parent19fb1fe5756cd11eb00704162405d6a8399eb9af (diff)
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