Skip to content

Commit

Permalink
Merge branch 'master' into publics
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveYesland authored May 24, 2024
2 parents e242a42 + d7f8eb0 commit 79ceeb0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@ FROM python:3.9-alpine
LABEL maintainer="Rhino Assessment Team <pacu@rhinosecuritylabs.com>"
LABEL pacu.version="1.5.3"

# Install necessary packages
RUN apk add --no-cache \
aws-cli \
zip
python3 \
py3-pip \
zip \
curl \
unzip

# Install AWS CLI using pip
RUN pip3 install --upgrade pip \
&& pip3 install awscli

# Install Pacu
WORKDIR /usr/src/pacu/
Expand All @@ -15,3 +23,4 @@ RUN pip install .
RUN echo 'AWS_EC2_METADATA_DISABLED=true' >> /etc/profile

ENTRYPOINT ["pacu"]

0 comments on commit 79ceeb0

Please sign in to comment.