fix: dockerfile cmd

This commit is contained in:
GitBluub
2023-01-27 00:05:18 +09:00
committed by Bluub
parent 6797ce3937
commit a3f1ff6f7a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,4 +10,4 @@ COPY ./requirements.txt .
RUN pip install -r ./requirements.txt
COPY . .
CMD ["/usr/bin/websocketd", "--port=6543", "--staticdir=." "./main.py"]
CMD /usr/bin/websocketd --port=6543 --staticdir=. ./main.py
+1 -1
View File
@@ -9,4 +9,4 @@ WORKDIR /app
COPY ./requirements.txt .
RUN pip install -r ./requirements.txt
CMD ["/usr/bin/websocketd", "--port=6543", "--devconsole", "--", "python3", "./main.py"]
CMD /usr/bin/websocketd --port=6543 --devconsole -- python3 ./main.py