From cfe039aa04df678dd5f288d6319ec4650be4b2b5 Mon Sep 17 00:00:00 2001 From: viridian Date: Mon, 30 Dec 2024 22:34:23 +0100 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9d5f507..c3358d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,6 @@ COPY requirements.txt ./ COPY modules/ ./modules RUN pip install --no-cache-dir -r requirements.txt -COPY . . +COPY main.py ./ CMD [ "python", "./main.py"]