From c76fecf5286d7c4d0decb6f2243065a2b08eff00 Mon Sep 17 00:00:00 2001 From: sangge-rockpi <2251250136@qq.com> Date: Sun, 21 Jan 2024 23:50:53 +0800 Subject: [PATCH] update dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e42a90d..5ed6019 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3-slim COPY requirements.txt main.py /app/ -RUN pip install -r /app/requirements -i https://pypi.tuna.tsinghua.edu.cn/simple +RUN pip install -r /app/requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple ENTRYPOINT ["python3", "/app/main.py"]