From 09712af43e1bc1526ac53f2bf347c8ecba01c8f2 Mon Sep 17 00:00:00 2001 From: thewhiteh4t Date: Sat, 18 May 2024 20:42:52 +0530 Subject: [PATCH] dockerfile updated --- Dockerfile | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/Dockerfile b/Dockerfile index bd7afcb..fec875d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]