We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b94a3d0 commit 6995413Copy full SHA for 6995413
Dockerfile
@@ -1,9 +1,9 @@
1
-FROM node:lts-alpine3.9
+FROM python:3.11.3-slim-bullseye
2
3
-RUN apk update && apk add --no-cache bash git openssh python3 py3-pip
+RUN apt update && apt install -y --no-install-recommends git
4
5
-RUN pip3 install --no-cache-dir -q --upgrade pip
6
-RUN pip3 install --no-cache-dir -q autopep8
+RUN pip install --no-cache-dir -q --upgrade pip
+RUN pip install --no-cache-dir -q autopep8
7
8
COPY entrypoint.sh /entrypoint.sh
9
ENTRYPOINT ["/entrypoint.sh"]
0 commit comments