Files
awscli/Dockerfile
T
renovate ef41edd8df
Docker Build and Push / lint (pull_request) Successful in 8s
Docker Build and Push / build (pull_request) Successful in 40s
Docker Build and Push / test (pull_request) Successful in 12s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / lint (push) Successful in 6s
Docker Build and Push / build (push) Successful in 29s
Docker Build and Push / test (push) Successful in 20s
Docker Build and Push / push (push) Successful in 19s
chore(deps): pin dependencies
2026-06-09 13:27:51 +00:00

20 lines
597 B
Docker

FROM python:3.9-alpine@sha256:c99b6eb43b3ac4d750db3d6e8b22268d5ea9a99deead7218ce3deda7f2ca029c
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"]