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" ]