We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9894abf + f254d7b commit 22a2094Copy full SHA for 22a2094
services/workshop/Dockerfile
@@ -24,7 +24,9 @@ RUN apk add --update --no-cache --virtual .build-deps \
24
libffi-dev gcc py3-pip \
25
python3-dev \
26
musl-dev \
27
- libffi-dev
+ libffi-dev \
28
+ cairo-dev \
29
+ pkgconfig
30
31
ENV PYTHONDONTWRITEBYTECODE=1
32
ENV PYTHONUNBUFFERED=1
@@ -36,7 +38,7 @@ RUN pip install wheel && pip wheel . --wheel-dir /app/wheels
36
38
FROM python:3.11-alpine
37
39
COPY --from=build /app /app
40
WORKDIR /app
-RUN apk update && apk add --no-cache postgresql-libs curl
41
+RUN apk update && apk add --no-cache postgresql-libs curl cairo
42
RUN pip install --no-index --find-links=/app/wheels -r requirements.txt
43
COPY ./certs /app/certs
44
COPY health.sh /app/health.sh
0 commit comments