update dockerfile

This commit is contained in:
涵曦 2024-06-23 10:23:46 +00:00
parent b51e56718a
commit 2eab8d8113

View File

@ -5,7 +5,7 @@ RUN python3 -m venv .venv && .venv/bin/pip install --no-cache-dir -r requirement
FROM python:3.10-slim
RUN apt-get update \
&& apt-get install -y wget \
&& apt-get install -y wget xz-utils \
&& apt-get clean
WORKDIR /app
COPY install_dependencies.sh .