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 98d00d0c50
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline failed
move package into requirements.txt
2024-05-08 14:56:02 +02:00

12 lines
366 B
Docker

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