Last active
June 3, 2020 19:27
-
-
Save Yatekii/2a3304a67ece5fe6773dbcd565386921 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.12 | |
RUN apk \ | |
--update \ | |
--upgrade \ | |
--no-cache \ | |
add \ | |
cairo-dev \ | |
pango-dev \ | |
gdk-pixbuf-dev \ | |
ttf-dejavu | |
ADD requirements.txt requirements.txt | |
RUN set \ | |
-ex \ | |
&& apk \ | |
--no-cache \ | |
--virtual .build-deps \ | |
add \ | |
gcc \ | |
musl-dev \ | |
jpeg-dev \ | |
zlib-dev \ | |
libffi-dev \ | |
python3-dev \ | |
py3-pip \ | |
py3-wheel \ | |
&& pip3 \ | |
install \ | |
--no-cache-dir \ | |
-r requirements.txt \ | |
&& apk \ | |
del .build-deps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
webencodings | |
WeasyPrint |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment