-
-
Notifications
You must be signed in to change notification settings - Fork 431
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
2cc83f4
commit 09712af
Showing
1 changed file
with
3 additions
and
16 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,20 +1,7 @@ | ||
FROM alpine:latest | ||
RUN apk update | ||
RUN apk add \ | ||
git \ | ||
python3 \ | ||
py3-pip gcc \ | ||
python3-dev \ | ||
postgresql-dev \ | ||
libffi-dev \ | ||
musl-dev \ | ||
libxml2-dev \ | ||
libxslt-dev | ||
RUN rm -rf /var/cache/apk/* | ||
FROM python:latest | ||
WORKDIR /root | ||
RUN git clone https://github.com/thewhiteh4t/finalrecon.git | ||
WORKDIR /root/finalrecon/ | ||
RUN pip3 install wheel | ||
RUN pip3 install --upgrade pip | ||
RUN pip3 install -r requirements.txt | ||
RUN pip install wheel | ||
RUN pip install -r requirements.txt | ||
ENTRYPOINT ["python3", "finalrecon.py"] |