Update Dockerfile to include python, pip, etc. (testing)

This commit is contained in:
OnceUponATimeInAmerica 2024-08-23 19:27:32 +03:30 committed by GitHub
parent 2471bda211
commit ce90308035
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,21 @@ RUN apk add --no-cache --update \
ca-certificates \ ca-certificates \
tzdata \ tzdata \
fail2ban \ 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/build/ /app/
COPY --from=builder /app/DockerEntrypoint.sh /app/ COPY --from=builder /app/DockerEntrypoint.sh /app/