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.
1 parent c72e454 commit 57fba1eCopy full SHA for 57fba1e
Dockerfile
@@ -1,5 +1,6 @@
1
FROM python:3.10 AS builder
2
3
+
4
RUN pip install --user pipenv
5
6
# Tell pipenv to create venv in the current directory
@@ -21,6 +22,7 @@ RUN echo $(date -Is) >> .version
21
22
23
FROM python:3.10-slim AS runtime
24
25
26
WORKDIR /app
27
28
# copy venv into runtime
@@ -40,4 +42,7 @@ COPY . /app
40
42
# build default alembic config into container, we rarely want to change this
41
43
RUN /bin/bash -c 'if [[ ! -f alembic.ini ]]; then mv alembic.example.ini alembic.ini; fi'
44
45
+RUN apt-get update
46
+RUN apt-get install -y python3-cairo
47
48
CMD [ "python", "apollo.py" ]
0 commit comments