diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-03 15:14:47 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-03 15:14:47 +0100 |
commit | 84b90c675dd788957957373ba5737b169e537ab0 (patch) | |
tree | b3ece67c25226369a9689ba787a6ba44936e60ef /Dockerfile | |
parent | 19fb1fe5756cd11eb00704162405d6a8399eb9af (diff) |
Add requirement on libgcrypt20-dev to try to fix libgcrypt error
Diffstat (limited to '')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |