Files
awscli/Dockerfile
T
renovate 39a3b7237e
Docker Build and Push / lint (pull_request) Successful in 8s
Docker Build and Push / lint (push) Successful in 5s
Docker Build and Push / build (pull_request) Successful in 1m27s
Docker Build and Push / build (push) Successful in 1m15s
Docker Build and Push / test (pull_request) Failing after 15s
Docker Build and Push / test (push) Failing after 14s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / push (push) Has been skipped
Update python Docker tag to v3.14
2026-06-09 01:05:31 +00:00

20 lines
526 B
Docker

FROM python:3.14-alpine
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
ARG CLI_VERSION=1.16.148
# hadolint ignore=DL3018,DL3013
RUN apk --no-cache upgrade && \
apk --no-cache add --virtual build-dependencies \
groff \
jq \
less && \
pip install --no-cache-dir awscli==${CLI_VERSION} && \
apk del build-dependencies && \
rm -rf /usr/lib/ruby/gems/*/cache/* \
/var/cache/apk/* \
/tmp/* \
/var/tmp/*
WORKDIR /data
ENTRYPOINT ["/usr/local/bin/aws"]