From 507376b9adb87cc1274427b79af5d2bf873ddb6c Mon Sep 17 00:00:00 2001 From: Marie Date: Fri, 8 Dec 2023 02:01:40 +0100 Subject: [PATCH] upd: add python --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7ec6f4ba5..fc891ff9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,11 @@ WORKDIR /sharkey RUN apk add git +ENV PYTHONUNBUFFERED=1 +RUN apk add --update python3 && ln -sf python3 /usr/bin/python +RUN python3 -m ensurepip +RUN pip3 install --no-cache --upgrade pip setuptools + COPY . ./ RUN git submodule update --init --recursive