Skip to content

Commit

Permalink
dockerfile updated
Browse files Browse the repository at this point in the history
  • Loading branch information
thewhiteh4t committed May 18, 2024
1 parent 2cc83f4 commit 09712af
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions Dockerfile
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"]

0 comments on commit 09712af

Please sign in to comment.