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 804363b commit 4b5e9faCopy full SHA for 4b5e9fa
incubating/argocd-app-status/Dockerfile
@@ -5,6 +5,7 @@ COPY requirements.txt requirements.txt
5
COPY queries queries/
6
COPY argocd_app_status.py argocd_app_status.py
7
8
+RUN apt-get update && apt-get install -y binutils
9
RUN pip3 install -r requirements.txt
10
RUN pip3 install pyinstaller
11
RUN pyinstaller --onefile argocd_app_status.py
@@ -18,5 +19,5 @@ USER codefresh
18
19
20
WORKDIR /app
21
-COPY --from=builder dist/argocd_app_status argocd_app_status
22
+COPY --from=builder /app/dist/argocd_app_status argocd_app_status
23
ENTRYPOINT ["/app/argocd_app_status"]
0 commit comments