We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d8ff1c commit e9a30dbCopy full SHA for e9a30db
CONTROLLER_VERSION
@@ -1 +1 @@
1
-1.29.53
+1.29.54
deployment/Dockerfile.both
@@ -5,10 +5,17 @@ ADD mcad-controller /usr/local/bin
5
RUN true \
6
&& microdnf update \
7
&& microdnf --nodocs install \
8
- curl \
+ curl shadow-utils \
9
&& microdnf clean all \
10
&& true
11
12
RUN cd /usr/local/bin && curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x kubectl
13
14
WORKDIR /usr/local/bin
15
+
16
+RUN groupadd --system --gid=9999 mcad && \
17
+ useradd --system --create-home --uid=9999 --gid=mcad mcad
18
19
+RUN chown -R mcad:mcad /usr/local/bin
20
21
+USER mcad
0 commit comments