Skip to content

Commit

Permalink
Changed action to be based on python docker
Browse files Browse the repository at this point in the history
  • Loading branch information
creyD committed May 24, 2023
1 parent b94a3d0 commit 6995413
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit 6995413

Please sign in to comment.