diff --git a/incubating/argocd-app-status/.gitignore b/incubating/argocd-app-status/.gitignore new file mode 100644 index 000000000..d8de0e924 --- /dev/null +++ b/incubating/argocd-app-status/.gitignore @@ -0,0 +1,3 @@ +build +dist +argocd_app_status.spec diff --git a/incubating/argocd-app-status/CHANGELOG.md b/incubating/argocd-app-status/CHANGELOG.md index 56d755a2f..4de9dd45c 100644 --- a/incubating/argocd-app-status/CHANGELOG.md +++ b/incubating/argocd-app-status/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog -## [1.1.2] - 2023-09-18 +## [1.1.3] - 2024-11-20 ### Changed +* upgrade yarl to 1.17.2 + +### Fixed +* CVE-2024-45491 - upgrade libexpat1 +* CVE-2024-45492 - upgrade libexpat1 +* CVE-2024-37371 - upgrade libkrb5 +* CVE-2023-45853 - upgrade zlib1g + +## [1.1.2] - 2023-09-18 + ### Fixed - PYSEC-2023-135 - upgrade Python module certifi to 2023.7.22 @@ -8,7 +18,7 @@ ## [1.1.1] - 2023-06-03 ### Changed -- Upgrade pythpn version to 3.11.3 +- Upgrade python version to 3.11.3 ### Fixed - Link for application diff --git a/incubating/argocd-app-status/Dockerfile b/incubating/argocd-app-status/Dockerfile index 8deaa6f87..f2f4fd975 100644 --- a/incubating/argocd-app-status/Dockerfile +++ b/incubating/argocd-app-status/Dockerfile @@ -1,7 +1,24 @@ -FROM python:3.11.5-slim-bookworm +# stage 1 Build +# Bookworm is debian based +FROM python:3.13.1-slim-bookworm AS builder WORKDIR /app COPY requirements.txt requirements.txt -RUN pip3 install -r requirements.txt COPY queries queries/ COPY argocd_app_status.py argocd_app_status.py -CMD [ "python3", "argocd_app_status.py"] + +RUN apt-get update && apt-get install -y binutils +RUN pip3 install -r requirements.txt +RUN pip3 install pyinstaller +RUN pyinstaller --strip --onefile argocd_app_status.py + +# stage 2 : Prod +FROM debian:bookworm-slim + +# USER cfuser +RUN adduser cfuser --home /home/codefresh --shel /bin/sh +USER cfuser + +WORKDIR /app +COPY queries queries/ +COPY --from=builder /app/dist/argocd_app_status argocd_app_status +ENTRYPOINT ["/app/argocd_app_status"] diff --git a/incubating/argocd-app-status/requirements.txt b/incubating/argocd-app-status/requirements.txt index 325dd8188..3268aed14 100644 --- a/incubating/argocd-app-status/requirements.txt +++ b/incubating/argocd-app-status/requirements.txt @@ -5,10 +5,10 @@ docopt==0.6.2 gql==3.4.0 graphql-core==3.2.3 idna==3.4 -multidict==6.0.4 +multidict==6.1.0 pipreqs==0.4.13 requests==2.31.0 requests-toolbelt==0.10.1 urllib3==1.26.16 yarg==0.1.9 -yarl==1.9.2 +yarl==1.17.2 diff --git a/incubating/argocd-app-status/step.yaml b/incubating/argocd-app-status/step.yaml index 60fb10237..4c8124eba 100644 --- a/incubating/argocd-app-status/step.yaml +++ b/incubating/argocd-app-status/step.yaml @@ -1,7 +1,7 @@ kind: step-type metadata: name: argocd-app-status - version: 1.1.2 + version: 1.1.3 isPublic: true description: Get Argo CD App status and return its sybc and health status sources: @@ -61,7 +61,7 @@ spec: }, "IMAGE_TAG": { "type": "string", - "default": "1.1.2", + "default": "1.1.3", "description": "OPTIONAL - To overwrite the tag to use" } } @@ -97,7 +97,7 @@ spec: [[- end ]] commands: - cd /app - - python3 argocd_app_status.py + - /app/argocd_app_status delimiters: left: '[[' right: ']]'