Update Dockerfile

This commit is contained in:
Linus Dietz
2023-06-20 13:06:17 +02:00
committed by GitHub
parent 4896f8d00a
commit 4770846312
+2 -2
View File
@@ -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" ]
CMD [ "python", "-u", "./main.py" ]