diff options
| author | Marie <marie@kaifa.ch> | 2023-12-08 02:01:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-08 02:01:40 +0100 |
| commit | 507376b9adb87cc1274427b79af5d2bf873ddb6c (patch) | |
| tree | 96ce421a1ea6e9533ff03a8c4d07422e9c0fc894 /Dockerfile | |
| parent | fix: init submodules (diff) | |
| download | sharkey-507376b9adb87cc1274427b79af5d2bf873ddb6c.tar.gz sharkey-507376b9adb87cc1274427b79af5d2bf873ddb6c.tar.bz2 sharkey-507376b9adb87cc1274427b79af5d2bf873ddb6c.zip | |
upd: add python
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index 7ec6f4ba51..fc891ff9d8 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 |