-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed action to be based on python docker
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |