File: Dockerfile

package info (click to toggle)
pylint 4.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,304 kB
  • sloc: python: 76,455; makefile: 70
file content (7 lines) | stat: -rw-r--r-- 157 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
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"]