move package into requirements.txt
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
Michael Grote 2024-05-08 14:56:02 +02:00
parent 5b935e9930
commit 98d00d0c50
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,6 @@ 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 pylint==3.1.0 \
&& pip install --no-cache-dir --break-system-packages -r requirements.txt \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
pylint==3.1.0