From 53f61a937310877af2bf3b1e9fba78de629871e3 Mon Sep 17 00:00:00 2001 From: joizhang Date: Sun, 11 Dec 2022 19:54:35 +0800 Subject: [PATCH] chore: update apt source --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a9dae0d..34873f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.8-slim-buster COPY . /var/www/src/face-recognition-server WORKDIR /var/www/src/face-recognition-server -RUN sed -i 's#http://deb.debian.org#https://mirrors.tuna.tsinghua.edu.cn#g' /etc/apt/sources.list +#RUN sed -i 's#http://deb.debian.org#https://mirrors.tuna.tsinghua.edu.cn#g' /etc/apt/sources.list RUN apt update && apt install -y python3-opencv RUN pip3 install importlib-metadata poetry -i https://pypi.tuna.tsinghua.edu.cn/simple RUN poetry config virtualenvs.create false -- Gitee