aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-06-04 23:11:34 +0100
committerGravatar GitHub <[email protected]>2024-06-04 23:11:34 +0100
commit0f980be49914c9e9480504286d83e82c0e71cd4a (patch)
tree37b0731c2d87abafc9556e73a51e947a307c8291 /Dockerfile
parentMerge pull request #200 from python-discord/system-pleasure-emitting-module (diff)
parentAdd new face command to system information generator module (diff)
Merge pull request #202 from python-discord/jb3/features/face-generator
Diffstat (limited to 'Dockerfile')
-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 ./