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

Update python:3.13.1-alpine Docker digest to 76400ba #517

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
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 aws-cli-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.1-alpine@sha256:992c45b1cf7affc93ff4aea53b28afb6921065bccb05b84cb69ac83475a7227c as Builder
FROM python:3.13.1-alpine@sha256:76400ba76ffc77f62f588f51b902ae763c2b0bfaecfda7aafdf1cc10415fd766 as Builder

Check warning on line 1 in aws-cli-action/Dockerfile

View workflow job for this annotation

GitHub Actions / docker build (aws-cli-action) / Docker Build (Test)

Stage names should be lowercase

StageNameCasing: Stage name 'Builder' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/

Check warning on line 1 in aws-cli-action/Dockerfile

View workflow job for this annotation

GitHub Actions / docker build (aws-cli-action) / Docker Build (Test)

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/

COPY requirements.txt .
COPY entrypoint.sh .
Expand Down
4 changes: 2 additions & 2 deletions aws-cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.13.1-alpine@sha256:992c45b1cf7affc93ff4aea53b28afb6921065bccb05b84cb69ac83475a7227c as Builder
FROM python:3.13.1-alpine@sha256:76400ba76ffc77f62f588f51b902ae763c2b0bfaecfda7aafdf1cc10415fd766 as Builder

Check warning on line 1 in aws-cli/Dockerfile

View workflow job for this annotation

GitHub Actions / docker build (aws-cli) / Docker Build (Test)

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/

Check warning on line 1 in aws-cli/Dockerfile

View workflow job for this annotation

GitHub Actions / docker build (aws-cli) / Docker Build (Test)

Stage names should be lowercase

StageNameCasing: Stage name 'Builder' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/

COPY requirements.txt .

RUN apk add --update alpine-sdk build-base && \
pip install --no-cache-dir --user -r requirements.txt

FROM python:3.13.1-alpine@sha256:992c45b1cf7affc93ff4aea53b28afb6921065bccb05b84cb69ac83475a7227c
FROM python:3.13.1-alpine@sha256:76400ba76ffc77f62f588f51b902ae763c2b0bfaecfda7aafdf1cc10415fd766

COPY --from=Builder /root/.local /root/.local

Expand Down
Loading