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(deps): update python:alpine3.20 docker digest to fcbcbbe #38

Merged
merged 1 commit into from
Nov 18, 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
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
######################################### BUILD #########################################

FROM python:alpine3.20@sha256:c38ead8bcf521573dad837d7ecfdebbc87792202e89953ba8b2b83a9c5a520b6 as builder
FROM python:alpine3.20@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373 as builder

Check warning on line 3 in Containerfile

View workflow job for this annotation

GitHub Actions / build-container / Build and push image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# Add configuration files
COPY requirements/apk.build.list requirements/pip.list /requirements/
Expand All @@ -12,7 +12,7 @@

######################################### RUNNER #########################################

FROM python:alpine3.20@sha256:c38ead8bcf521573dad837d7ecfdebbc87792202e89953ba8b2b83a9c5a520b6
FROM python:alpine3.20@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373

# Directory for executing Playbooks
WORKDIR /runner/
Expand All @@ -36,7 +36,7 @@
RUN apk add --update --no-cache $(cat /requirements/apk.list)

# Copy python environment (Ansible required args and scripts)
ENV PATH=/opt/ansible_venv/bin:${PATH} \

Check warning on line 39 in Containerfile

View workflow job for this annotation

GitHub Actions / build-container / Build and push image

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

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "ANSIBLE_SSH_HOST_KEY_CHECKING") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ANSIBLE_ROLES_PATH=roles:/runner/roles:/usr/share/ansible/roles \
ANSIBLE_COLLECTIONS_PATH=collections:/runner/collections:/usr/share/ansible/collections \
ANSIBLE_LOCAL_TEMP=/tmp \
Expand Down
Loading