Files
awscli/Dockerfile
T
cloudix_mcp_server 72b4a06d32
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / lint (push) Successful in 5s
Docker Build and Push / build (pull_request) Successful in 1m22s
Docker Build and Push / build (push) Successful in 24s
Docker Build and Push / test (pull_request) Failing after 16s
Docker Build and Push / test (push) Failing after 15s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / push (push) Has been skipped
fix: add hadolint ignore DL3018,DL3013 for apk add and pip install
2026-06-08 19:02:32 -04:00

21 lines
522 B
Docker

FROM python: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"]