Use raw alpine instead of python image
continuous-integration/drone/push Build is passing Details

This commit is contained in:
nemunaire 2023-08-29 12:19:16 +02:00
parent cc810269e2
commit 6681962529
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
FROM python:3-alpine
FROM alpine:3
ENTRYPOINT ["python", "/srv/e-paper/main.py"]
WORKDIR /srv/e-paper
VOLUME /data
RUN apk add --no-cache cairo py3-cairosvg && pip install --upgrade icalendar "Pillow<10" pygal
RUN apk add --no-cache python3 py3-cairosvg py3-pillow py3-pip py3-pygal tzdata && pip install --upgrade icalendar
ADD https://github.com/adobe-fonts/source-sans/raw/release/OTF/SourceSans3-Bold.otf /usr/share/fonts/source-sans/SourceSans3-Bold.otf
ADD https://github.com/adobe-fonts/source-sans/raw/release/OTF/SourceSans3-It.otf /usr/share/fonts/source-sans/SourceSans3-It.otf