mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-21 15:31:00 +00:00
Upgrade waitress to patch CVE-2022-31015
Remove pip to close IN1-PYTHON-PIP-1278135 apt-get upgrade to close CVE-2022-1664, CVE-2022-1304, and CVE-2022-2068
This commit is contained in:
parent
ed764ce81b
commit
b6219cb605
4 changed files with 22 additions and 12 deletions
20
Dockerfile
20
Dockerfile
|
@ -11,21 +11,23 @@ RUN apt-get update -qq \
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -rf /var/lib/apt
|
&& rm -rf /var/lib/apt
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get upgrade --assume-yes
|
||||||
|
|
||||||
RUN pip install --upgrade pip
|
RUN pip install --upgrade pip
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
|
||||||
RUN if [ "$with_models" = "true" ]; then \
|
RUN if [ "$with_models" = "true" ]; then \
|
||||||
# install only the dependencies first
|
# install only the dependencies first
|
||||||
pip install -e .; \
|
pip install -e .; \
|
||||||
# initialize the language models
|
# initialize the language models
|
||||||
if [ ! -z "$models" ]; then \
|
if [ ! -z "$models" ]; then \
|
||||||
./install_models.py --load_only_lang_codes "$models"; \
|
./install_models.py --load_only_lang_codes "$models"; \
|
||||||
else \
|
else \
|
||||||
./install_models.py; \
|
./install_models.py; \
|
||||||
fi \
|
fi \
|
||||||
fi
|
fi
|
||||||
# Install package from source code
|
# Install package from source code
|
||||||
RUN pip install . \
|
RUN pip install . \
|
||||||
&& pip cache purge
|
&& pip cache purge
|
||||||
|
|
|
@ -9,4 +9,10 @@ services:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- 5000:5000
|
- 5000:5000
|
||||||
command: --gpus all
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- driver: nvidia
|
||||||
|
count: 1
|
||||||
|
capabilities: [gpu]
|
||||||
|
|
|
@ -12,7 +12,9 @@ RUN apt-get update -qq \
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -rf /var/lib/apt
|
&& rm -rf /var/lib/apt
|
||||||
|
|
||||||
RUN pip3 install --upgrade pip
|
RUN apt-get update && apt-get upgrade --assume-yes
|
||||||
|
|
||||||
|
RUN pip3 install --upgrade pip && apt-get remove python3-pip --assume-yes
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ Flask==2.1.2
|
||||||
flask-swagger==0.2.14
|
flask-swagger==0.2.14
|
||||||
flask-swagger-ui==3.36.0
|
flask-swagger-ui==3.36.0
|
||||||
Flask-Limiter==2.4.5.1
|
Flask-Limiter==2.4.5.1
|
||||||
waitress==2.1.1
|
waitress==2.1.2
|
||||||
expiringdict==1.2.1
|
expiringdict==1.2.1
|
||||||
pyicu>=2.8
|
pyicu>=2.8
|
||||||
pycld2==0.41
|
pycld2==0.41
|
||||||
|
|
Loading…
Reference in a new issue