From 7ab0c836384a09213a0d2176b9deca20c439e614 Mon Sep 17 00:00:00 2001 From: Daniel Tam Date: Sun, 26 May 2024 03:03:51 -0500 Subject: [PATCH] Fix dockerfile entrypoint --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a088dae..537ef85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,4 @@ COPY . . RUN pip install -r requirements.txt -ENTRYPOINT ["python", "main.py"] \ No newline at end of file +ENTRYPOINT ["python", "/app/main.py"] \ No newline at end of file