mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
7ac4881609
This enables us to remove the following patterns that required a `rm -rf /var/cache/apk`: - `apk update` - `apk add --update` - `apk add --update-cache` Supported since alpine 3.3.
21 lines
456 B
Docker
21 lines
456 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
groff \
|
|
less \
|
|
python \
|
|
py-pip \
|
|
&& pip install awscli \
|
|
&& mkdir -p /root/.aws \
|
|
&& { \
|
|
echo '[default]'; \
|
|
echo 'output = json'; \
|
|
echo 'region = $AWS_DEFAULT_REGION'; \
|
|
echo 'aws_access_key_id = $AMAZON_ACCESS_KEY_ID'; \
|
|
echo 'aws_secret_access_key = $AMAZON_SECRET_ACCESS_KEY'; \
|
|
} > /root/.aws/config
|
|
|
|
ENTRYPOINT [ "aws" ]
|