From 4770846312166a1da745b67198581ee763c8e179 Mon Sep 17 00:00:00 2001 From: Linus Dietz <45101649+Dielee@users.noreply.github.com> Date: Tue, 20 Jun 2023 13:06:17 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a363dce..ba2eff5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY requirements.txt . RUN pip install -r requirements.txt # copy the content of the local src directory to the working directory -COPY / . +COPY /src . # command to run on container start -CMD [ "python", "-u", "/volvoAAOS2mqtt/src/main.py" ] \ No newline at end of file +CMD [ "python", "-u", "./main.py" ]