mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-30 13:28:30 +01:00
f3920ea0dd
Fixed the correct environment variable for AWS region. http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html#cli-environment
22 lines
489 B
Docker
22 lines
489 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
RUN apk update && apk add \
|
|
ca-certificates \
|
|
groff \
|
|
less \
|
|
python \
|
|
py-pip \
|
|
&& rm -rf /var/cache/apk/* \
|
|
&& 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" ]
|