diff --git a/aws-cli-action/Dockerfile b/aws-cli-action/Dockerfile index 881d772..92e8196 100644 --- a/aws-cli-action/Dockerfile +++ b/aws-cli-action/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.7-alpine@sha256:3f818d6811ff5f3f2b5e5d836df3d25c2dd2e588d3b4981338a8ba17e422f74f as Builder +FROM python:3.14.7-alpine@sha256:c6ead215bfd31f1e433d968853b7a769989117115b728874824e6c0a27cb96fc as Builder COPY requirements.txt . COPY entrypoint.sh . diff --git a/aws-cli/Dockerfile b/aws-cli/Dockerfile index 38bd18d..e886a1d 100644 --- a/aws-cli/Dockerfile +++ b/aws-cli/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.14.7-alpine@sha256:3f818d6811ff5f3f2b5e5d836df3d25c2dd2e588d3b4981338a8ba17e422f74f as Builder +FROM python:3.14.7-alpine@sha256:c6ead215bfd31f1e433d968853b7a769989117115b728874824e6c0a27cb96fc 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.7-alpine@sha256:3f818d6811ff5f3f2b5e5d836df3d25c2dd2e588d3b4981338a8ba17e422f74f +FROM python:3.14.7-alpine@sha256:c6ead215bfd31f1e433d968853b7a769989117115b728874824e6c0a27cb96fc COPY --from=Builder /root/.local /root/.local