Files
quick-qrcode-generator/Containerfile

19 lines
368 B
Docker
Raw Permalink Normal View History

FROM fedora-minimal:latest
2020-12-28 15:28:54 +01:00
RUN microdnf install --assumeyes \
python3-flask \
python3-flask-wtf \
tzdata \
&& microdnf clean all
# fedora-minimal has broken tzdata package - https://bugzilla.redhat.com/show_bug.cgi?id=1870814
RUN microdnf reinstall --assumeyes tzdata && microdnf clean all
2020-12-28 15:28:54 +01:00
USER 1000
ADD /app /app
WORKDIR /app
CMD [ "/app/qrwebform.py" ]