Created
March 19, 2019 02:19
-
-
Save karl-cardenas-coding/2c349917d276e76ae87b143662d20403 to your computer and use it in GitHub Desktop.
automation-dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM hashicorp/terraform:latest | |
RUN apk update && apk upgrade && apk add --no-cache \ | |
python3 \ | |
&& python3 -m ensurepip \ | |
&& pip3 install --upgrade pip setuptools \ | |
&& pip3 install awscli --upgrade --user \ | |
&& apk add bash \ | |
&& mv /root/.local/bin/* /usr/local/bin \ | |
&& rm -rf /var/cache/apk/* | |
WORKDIR /usr/local/bin | |
COPY packer ./ | |
ENTRYPOINT [""] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment