Files
OpenSK/github_actions/pylint/Dockerfile
2020-02-27 20:07:29 +01:00

11 lines
269 B
Docker

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"]