CloudGoat is Rhino Security Labs' "Vulnerable by Design" AWS deployment tool.
10K+
FROM python:3.8-alpine
LABEL maintainer="Rhino Assessment Team <[email protected]>"
LABEL cloudgoat.version="2.0.0"
RUN apk add --no-cache --update bash bash-completion docker-bash-completion openssh curl
# Install Terraform and AWS CLI
RUN wget -O terraform.zip 'https://releases.hashicorp.com/terraform/0.15.1/terraform_0.15.1_linux_arm64.zip' \
&& unzip terraform.zip \
&& rm terraform.zip \
&& mv ./terraform /usr/bin/ \
&& pip3 install awscli --upgrade
# Install CloudGoat
WORKDIR /usr/src/cloudgoat/core/python
COPY ./core/python/requirements.txt ./
RUN pip3 install -r ./requirements.txt
WORKDIR /usr/src/cloudgoat/
COPY ./ ./
ENTRYPOINT ["/bin/bash"]