From 3631ad7f7b1dcb661e44a507cd48bc568d7a04ce Mon Sep 17 00:00:00 2001 From: Magic <82341152+MagicTheDev@users.noreply.github.com> Date: Sat, 27 Jan 2024 12:41:09 -0600 Subject: [PATCH] ClashKing v4 --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f69c2f0..10fa7408 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ FROM python:3.11-bookworm -WORKDIR /usr/app/src - -COPY ./requirements.txt /usr/app/src/requirements.txt - +COPY requirements.txt /app/ +WORKDIR /app RUN pip install -r requirements.txt +COPY .. -CMD ["python", "main.py"] \ No newline at end of file +CMD ["python3", "main.py"] \ No newline at end of file