third_party.pylibs.pylint.src/examples/Dockerfile
Alex Mor e3f68d5e7e
Move dockerfile to the example directory bump to alpine3.17 (#8353)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
2023-04-01 10:39:07 +02:00

8 lines
157 B
Docker

FROM python:3.10.10-alpine3.17
COPY ./ /tmp/build
WORKDIR /tmp/build
RUN python -m pip install --no-cache-dir . && rm -rf /tmp/build
ENTRYPOINT ["pylint"]