Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions services/workshop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ RUN apk add --update --no-cache --virtual .build-deps \
libffi-dev gcc py3-pip \
python3-dev \
musl-dev \
libffi-dev
libffi-dev \
cairo-dev \
pkgconfig

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand All @@ -36,7 +38,7 @@ RUN pip install wheel && pip wheel . --wheel-dir /app/wheels
FROM python:3.11-alpine
COPY --from=build /app /app
WORKDIR /app
RUN apk update && apk add --no-cache postgresql-libs curl
RUN apk update && apk add --no-cache postgresql-libs curl cairo
RUN pip install --no-index --find-links=/app/wheels -r requirements.txt
COPY ./certs /app/certs
COPY health.sh /app/health.sh
Expand Down
Loading