third_party.pylibs.pylint.src/Dockerfile
oittaa 17a16d79eb
Docker: Python 3.10 and Alpine 3.15 (#5443)
* Docker: Python 3.10 and Alpine 3.15
2021-12-03 20:14:07 +01:00

8 lines
141 B
Docker

FROM python:3.10.0-alpine3.15
COPY ./ /tmp/build
WORKDIR /tmp/build
RUN python setup.py install && rm -rf /tmp/build
ENTRYPOINT ["pylint"]