diff --git a/aws-cli-action/Dockerfile b/aws-cli-action/Dockerfile index ec26491..cd80b89 100644 --- a/aws-cli-action/Dockerfile +++ b/aws-cli-action/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.6-alpine@sha256:a5d5c75488ac235e8ea61eb3912eb9e7191c63532a2c87dab313ad671908d314 as Builder +FROM python:3.14.6-alpine@sha256:003970a263347645cd23d4f90929ad16ba7ce7d808ee4674ffcc93cb21cc289f as Builder COPY requirements.txt . COPY entrypoint.sh . diff --git a/aws-cli/Dockerfile b/aws-cli/Dockerfile index ca13fea..c81c047 100644 --- a/aws-cli/Dockerfile +++ b/aws-cli/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.14.6-alpine@sha256:a5d5c75488ac235e8ea61eb3912eb9e7191c63532a2c87dab313ad671908d314 as Builder +FROM python:3.14.6-alpine@sha256:003970a263347645cd23d4f90929ad16ba7ce7d808ee4674ffcc93cb21cc289f as Builder COPY requirements.txt . RUN apk add --update alpine-sdk build-base && \ pip install --no-cache-dir --user -r requirements.txt -FROM python:3.14.6-alpine@sha256:a5d5c75488ac235e8ea61eb3912eb9e7191c63532a2c87dab313ad671908d314 +FROM python:3.14.6-alpine@sha256:003970a263347645cd23d4f90929ad16ba7ce7d808ee4674ffcc93cb21cc289f COPY --from=Builder /root/.local /root/.local