2 Commits
v2.1 ... v3.0

Author SHA1 Message Date
fc2267b495 Adjusted pip commands for Python 3 2022-09-28 00:09:22 +02:00
3b42b54814 Updated to Python 3 2022-09-28 00:08:11 +02:00

View File

@@ -1,9 +1,9 @@
FROM node:lts-alpine3.9
RUN apk update && apk add --no-cache bash git openssh python py-pip
RUN apk update && apk add --no-cache bash git openssh python3 py3-pip
RUN pip install --no-cache-dir -q --upgrade pip
RUN pip install --no-cache-dir -q autopep8
RUN pip3 install --no-cache-dir -q --upgrade pip
RUN pip3 install --no-cache-dir -q autopep8
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]