From ce90308035d32aa108e5156e9fcc180c5dac14fb Mon Sep 17 00:00:00 2001 From: OnceUponATimeInAmerica <114700833+OnceUponATimeInAmerica@users.noreply.github.com> Date: Fri, 23 Aug 2024 19:27:32 +0330 Subject: [PATCH] Update Dockerfile to include python, pip, etc. (testing) --- Dockerfile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 010d9578..57ca85e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,21 @@ RUN apk add --no-cache --update \ ca-certificates \ tzdata \ fail2ban \ - bash + bash \ + iproute2 \ + python3 \ + py3-pip \ + && python3 -m ensurepip \ + && pip3 install --upgrade pip + +# Install Python packages +RUN pip3 install \ + psutil \ + pycurl \ + pysocks \ + python-dotenv \ + cloudflare \ + virtualenv COPY --from=builder /app/build/ /app/ COPY --from=builder /app/DockerEntrypoint.sh /app/