forked from RhinoSecurityLabs/pacu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdd72b3
commit 5c06971
Showing
1 changed file
with
12 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
FROM python:3.9-alpine | ||
|
||
LABEL maintainer="Rhino Assessment Team <[email protected]>" | ||
LABEL pacu.version="1.5.1" | ||
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/ | ||
|
@@ -15,3 +23,4 @@ RUN pip install . | |
RUN echo 'AWS_EC2_METADATA_DISABLED=true' >> /etc/profile | ||
|
||
ENTRYPOINT ["pacu"] | ||
|