From 9313c731ed9afce123aee17ae9ebb4b8af821ba6 Mon Sep 17 00:00:00 2001 From: Wargamer-Senpai Date: Fri, 8 Dec 2023 18:13:30 +0100 Subject: [PATCH] fixed issue with python modules --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b0f033d..6abced5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,11 +15,7 @@ COPY ./modules/* /opt/teampy/modules COPY ./plugins/ /opt/teampy/plugins COPY ./watchdog.sh /opt/teampy/ -RUN apk add --no-cache python3 && \ - /usr/bin/python3 -m ensurepip && \ - /usr/bin/pip3 --no-input install requests && \ - apk add iputils && \ - apk add bash +RUN apk add --no-cache python3 py3-requests py3-pip iputils bash WORKDIR /opt/teampy/ CMD [ "/bin/bash", "watchdog.sh" ]