- FROM ubuntu:latest
- RUN apt update && \
- apt install -y curl wget git yq jq unzip nodejs npm && \
- rm -rf /var/lib/apt/lists/*
- RUN curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/aws-cloudformation/cloudformation-guard/main/install-guard.sh | sh && \
- mv /root/.guard/bin/cfn-guard /usr/local/bin/cfn-guard
- RUN npm i -g aws-cdk
- RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
- unzip awscliv2.zip && \
- ./aws/install && \
- rm -rf ./aws awscliv2.zip
|