We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae8fb95 commit 50a3ae7Copy full SHA for 50a3ae7
Dockerfile
@@ -21,8 +21,10 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
21
22
WORKDIR /app
23
24
-RUN microdnf update -y \
25
- && microdnf install -y \
+USER 0
+
26
+RUN dnf update -y \
27
+ && dnf install -y \
28
openssl \
29
openssl-perl \
30
fipscheck \
@@ -33,7 +35,7 @@ RUN microdnf update -y \
33
35
tar \
34
36
gzip \
37
&& update-crypto-policies --set FIPS \
- && microdnf clean all
38
+ && dnf clean all
39
40
RUN useradd --no-log-init --create-home --home-dir /var/lib/nimbus nimbus
41
0 commit comments