From ec67561a91536a5e2b2aa7aafc6769aa2fb4bc35 Mon Sep 17 00:00:00 2001 From: L1ghtn1ng Date: Sun, 13 Nov 2022 01:57:24 +0000 Subject: [PATCH] Add python3-dev package to Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index be4b4a82..9c0d4ed6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ LABEL maintainer="@jay_townsend1 & @NotoriousRebel1 (alpine @viardant)" RUN mkdir /app WORKDIR /app COPY . /app -RUN apk update && apk upgrade --available && apk add git libffi-dev libxml2-dev libxslt-dev && python3 -m pip install --upgrade pip +RUN apk update && apk upgrade --available && apk add git libffi-dev python3-dev libxml2-dev libxslt-dev && python3 -m pip install --upgrade pip RUN python3 --version && pip3 install --no-cache-dir -r requirements.txt && chmod +x ./*.py ENTRYPOINT ["/app/theHarvester.py"]