From ecf59d1d28f80b6c0219c5a96ae0da7cb0cc27f2 Mon Sep 17 00:00:00 2001 From: Toby Jones Date: Wed, 4 Oct 2023 15:37:08 +0100 Subject: [PATCH] fix dockerfile WORKDIR --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a2017f9..ab3b1ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,6 @@ ADD requirements.txt /botapp ADD verification_template.md /botapp RUN pip install -r /botapp/requirements.txt -RUN ls -laR /botapp -CMD ["python3", "/botapp/main.py"] +WORKDIR /botapp +CMD ["python3", "main.py"]