Update Dockerfile

This commit is contained in:
Evil0ctal 2024-03-14 13:52:33 -07:00 committed by GitHub
parent 00b3c5e753
commit 723289afed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,9 +6,9 @@ RUN apt-get -y update \
&& apt-get install -y --no-install-recommends \
python3.11 python3-pip python3.11-dev nodejs
# Using douban pipy mirror
RUN pip3 install -i https://pypi.douban.com/simple/ -U pip
RUN pip3 config set global.index-url https://pypi.douban.com/simple/
# Using Aliyun pipy mirror
RUN pip3 install -i https://mirrors.aliyun.com/pypi/simple/ -U pip
RUN pip3 config set global.index-url https://mirrors.aliyun.com/pypi/simple/
COPY . /app
WORKDIR /app