This repository has been archived on 2024-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
pylint/Dockerfile
Michael Grote 8ed6286d2b
All checks were successful
ci/woodpecker/manual/lint Pipeline was successful
ci/woodpecker/manual/build Pipeline was successful
first commit
2024-05-08 14:38:53 +02:00

11 lines
316 B
Docker

FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
# hadolint ignore=DL3008,DL3028
RUN apt-get update \
&& apt-get -y --no-install-recommends install \
python3-full \
&& pip3 install --no-cache-dir --break-system-packages pylint==3.1.0 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*