Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update registry.access.redhat.com/ubi9/s2i-base Docker digest to e9c610e #3499

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/s2i-base@sha256:93efaecb1ebd165e7e4e1cdb3a01fda8a431a1ea0e56946f5b16223aaa402699
FROM registry.access.redhat.com/ubi9/s2i-base@sha256:e9c610e06416890bc4d3e4981aabc3a196f578f1ef900bae8c98d855112e3231

ENV SUMMARY="An image for the CONN-CCBC-portal app" \
DESCRIPTION="This image contains the compiled CONN-CCBC-portal node app"
Expand All @@ -17,8 +17,8 @@
ENV HOME=/root
ARG GIT_HASH
ENV GIT_HASH=${GIT_HASH}
ARG SENTRY_AUTH_TOKEN

Check warning on line 20 in app/Dockerfile

View workflow job for this annotation

GitHub Actions / build / app

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "SENTRY_AUTH_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}

Check warning on line 21 in app/Dockerfile

View workflow job for this annotation

GitHub Actions / build / app

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "SENTRY_AUTH_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ENV UPLOAD_DIR=${APP_HOME}/uploads

WORKDIR ${APP_HOME}
Expand Down
Loading