blob: 080fa0744cce24725b1aa9313d6ce5cb6463b809 [file] [log] [blame]
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"]