feat(qrgen): switch to fedora-minimal as base container

This commit is contained in:
2022-02-14 20:55:54 +01:00
parent 56c61f8398
commit 963f0863f7

View File

@@ -1,12 +1,13 @@
FROM fedora:latest
FROM fedora-minimal:latest
# workaround for running yum in container
USER root
RUN dnf install --assumeyes \
RUN microdnf install --assumeyes \
python3-flask \
python3-flask-wtf \
&& dnf clean all
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