Try with a custom action

This commit is contained in:
Jean-Michel Picod
2020-02-27 20:07:29 +01:00
parent db3b23cf22
commit fa19a80366
4 changed files with 69 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
FROM python:3.7-alpine
RUN apk add --no-cache bash build-base gcc
RUN pip install --upgrade pip
RUN pip install pylint
RUN python --version ; pip --version ; pylint --version
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]