Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
AWS_Auditing_Framework/Dockerfile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
23 lines (17 sloc)
681 Bytes
This file contains 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 python:3.8-alpine | |
LABEL maintainer="Rhino Assessment Team <cloudgoat@rhinosecuritylabs.com>" | |
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/1.3.9/terraform_1.3.9_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 ./requirements.txt ./ | |
RUN pip3 install -r ./requirements.txt | |
WORKDIR /usr/src/cloudgoat/ | |
COPY ./ ./ | |
ENTRYPOINT ["/bin/bash"] |