Created
January 7, 2020 08:48
-
-
Save chinhnguyen/092d7f7adbfaaeb2bb2cf794be6c11f1 to your computer and use it in GitHub Desktop.
Docker image for node:12.13.1 and awscli2
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 node:12.13.1 | |
LABEL maintainer="[email protected]" | |
LABEL nodeVersion="12.13.1" | |
LABEL awscliVersion="2.0.0" | |
LABEL version="1.0.0" | |
# https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux-mac.html | |
RUN curl "https://d1vvhvl2y92vvt.cloudfront.net/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" | |
RUN unzip awscliv2.zip | |
RUN ./aws/install | |
RUN aws2 --version | |
RUN npm --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment