diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-06-03 15:16:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 15:16:05 +0100 |
commit | 7cc8cbffff703eb0efd72959146eb133e20c4e0a (patch) | |
tree | b3ece67c25226369a9689ba787a6ba44936e60ef | |
parent | bfa7ea4cb41692618621d9ac15e24955f56f1a11 (diff) | |
parent | 84b90c675dd788957957373ba5737b169e537ab0 (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-- | 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 |