diff --git a/aws-cli-action/Dockerfile b/aws-cli-action/Dockerfile index cd15ef2..f704dae 100644 --- a/aws-cli-action/Dockerfile +++ b/aws-cli-action/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.2-alpine@sha256:7c2135f3b4c04e61b8e42c8a3149f520b55b5543cda68f1b879d419727347772 as Builder +FROM python:3.14.2-alpine@sha256:7af51ebeb83610fb69d633d5c61a2efb87efa4caf66b59862d624bb6ef788345 as Builder COPY requirements.txt . COPY entrypoint.sh . diff --git a/aws-cli/Dockerfile b/aws-cli/Dockerfile index ff6b65b..7df697e 100644 --- a/aws-cli/Dockerfile +++ b/aws-cli/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.14.2-alpine@sha256:7c2135f3b4c04e61b8e42c8a3149f520b55b5543cda68f1b879d419727347772 as Builder +FROM python:3.14.2-alpine@sha256:7af51ebeb83610fb69d633d5c61a2efb87efa4caf66b59862d624bb6ef788345 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.2-alpine@sha256:7c2135f3b4c04e61b8e42c8a3149f520b55b5543cda68f1b879d419727347772 +FROM python:3.14.2-alpine@sha256:7af51ebeb83610fb69d633d5c61a2efb87efa4caf66b59862d624bb6ef788345 COPY --from=Builder /root/.local /root/.local