From e18ea6acaa76a4e8f8eee4ea77956132f5331cbd Mon Sep 17 00:00:00 2001 From: harisang Date: Fri, 12 Jul 2024 00:26:44 +0300 Subject: [PATCH] update dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index afaa66a..aff3fdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ FROM python:3.12 -COPY requirements.txt . -RUN python -m pip install -r requirements.txt COPY . . -CMD python -m src.daemon +RUN pip install -r requirements.txt +ENTRYPOINT [ "python3", "-m"] \ No newline at end of file