From 6995413f335fc85db4464f447b9285e1393012bd Mon Sep 17 00:00:00 2001 From: Conrad Date: Wed, 24 May 2023 10:37:49 +0200 Subject: [PATCH] Changed action to be based on python docker --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c64fc11..f1665a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM node:lts-alpine3.9 +FROM python:3.11.3-slim-bullseye -RUN apk update && apk add --no-cache bash git openssh python3 py3-pip +RUN apt update && apt install -y --no-install-recommends git -RUN pip3 install --no-cache-dir -q --upgrade pip -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 COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]