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 027e15a commit 49dedacCopy full SHA for 49dedac
incubating/argocd-app-status/Dockerfile
@@ -7,10 +7,15 @@ COPY queries queries/
7
COPY argocd_app_status.py argocd_app_status.py
8
9
RUN pip3 install pyinstaller
10
-RUN pyinstaller --onefile app_status.py
+RUN pyinstaller --onefile argocd app_status.py
11
12
# stage 2 : Prod
13
FROM scratch
14
+
15
+# USER codefresh
16
+RUN useradd -d /home/codefresh -m -s /usr/bin/bash codefresh
17
+USER codefresh
18
19
WORKDIR /app
20
COPY queries queries/
21
COPY dist/argocd_app_status argocd_app_status
0 commit comments