aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-06-04 01:27:02 +0100
committerGravatar Joe Banks <[email protected]>2024-06-04 19:20:57 +0100
commitef13e0e5086700e32bc22dca3793e444b35103ef (patch)
tree78d0779800facc6a7f3fa66a5bb73515a69dbafc
parentAdd new Wand dependency (diff)
Add new build dependencies
-rw-r--r--Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index cbbccc0..40789cf 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,8 @@
FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:3.12-slim
+# Install build dependencies
+RUN apt-get update && apt-get install -y libmagickwand-dev && apt autoclean && rm -rf /var/lib/apt/lists/*
+
# Install project dependencies
WORKDIR /app
COPY pyproject.toml poetry.lock ./