From eaa8769c17a786941b290cec7424f99749912510 Mon Sep 17 00:00:00 2001 From: Daniele Gargano Date: Mon, 17 Oct 2022 19:23:25 +0200 Subject: [PATCH] Changes Dockerfile to Alpine --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6b095107..be4b4a82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM ubuntu:kinetic -LABEL maintainer="@jay_townsend1 & @NotoriousRebel1" +FROM python:3-alpine +LABEL maintainer="@jay_townsend1 & @NotoriousRebel1 (alpine @viardant)" RUN mkdir /app WORKDIR /app COPY . /app -ENV DEBIAN_FRONTEND=noninteractive -RUN apt update && apt dist-upgrade -qy && apt install -qy git python3 python3-pip libffi-dev libxml2-dev libxslt1-dev && /usr/bin/python3 -m pip install --upgrade pip && apt autoremove -qy -RUN /usr/bin/python3 --version && pip3 install --no-cache-dir -r requirements.txt && chmod +x ./*.py +RUN apk update && apk upgrade --available && apk add git libffi-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"] ENTRYPOINT ["/app/restfulHarvest.py", "-H", "0.0.0.0", "-p", "80"] EXPOSE 80