19 lines
368 B
Docker
19 lines
368 B
Docker
FROM fedora-minimal:latest
|
|
|
|
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
|
|
|
|
USER 1000
|
|
|
|
ADD /app /app
|
|
|
|
WORKDIR /app
|
|
|
|
CMD [ "/app/qrwebform.py" ]
|