move package into requirements.txt
This commit is contained in:
parent
5b935e9930
commit
98d00d0c50
2 changed files with 2 additions and 1 deletions
|
@ -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
1
requirements.txt
Normal file
|
@ -0,0 +1 @@
|
|||
pylint==3.1.0
|
Reference in a new issue