Skip to content

Instantly share code, notes, and snippets.

@chinhnguyen
Created January 7, 2020 08:48
Show Gist options
  • Save chinhnguyen/092d7f7adbfaaeb2bb2cf794be6c11f1 to your computer and use it in GitHub Desktop.
Save chinhnguyen/092d7f7adbfaaeb2bb2cf794be6c11f1 to your computer and use it in GitHub Desktop.
Docker image for node:12.13.1 and awscli2
FROM node:12.13.1
LABEL maintainer="chinh@willbe.vn"
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