Skip to content

Commit 6995413

Browse files
committed
Changed action to be based on python docker
1 parent b94a3d0 commit 6995413

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM node:lts-alpine3.9
1+
FROM python:3.11.3-slim-bullseye
22

3-
RUN apk update && apk add --no-cache bash git openssh python3 py3-pip
3+
RUN apt update && apt install -y --no-install-recommends git
44

5-
RUN pip3 install --no-cache-dir -q --upgrade pip
6-
RUN pip3 install --no-cache-dir -q autopep8
5+
RUN pip install --no-cache-dir -q --upgrade pip
6+
RUN pip install --no-cache-dir -q autopep8
77

88
COPY entrypoint.sh /entrypoint.sh
99
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)