qrgen: rebuild image with fedora, customize to home cluster

This commit is contained in:
2020-12-28 15:57:57 +01:00
parent 882fa06adc
commit c2f70fb149
3 changed files with 31 additions and 56 deletions

View File

@@ -1,12 +1,12 @@
FROM artifactory.hcp.preprod.oneadr.net/docker-nordea-images-local/nordea-python-36-rhel7:1
FROM fedora:latest
# workaround for running yum in container
USER root
RUN yum install --assumeyes \
python-flask \
python-flask-wtf \
&& yum clean all
RUN dnf install --assumeyes \
python3-flask \
python3-flask-wtf \
&& dnf clean all
USER 1000