fix: waitress entrypoint/healthstate

This commit is contained in:
Yannik Schmidt
2023-06-16 18:29:44 +02:00
committed by GitHub
parent 58d82b1d43
commit 0bb4fa8e45

View File

@@ -32,4 +32,5 @@ EXPOSE 5000/tcp
RUN apt remove git -y
RUN apt autoremove -y
CMD waitress-serve --host 0.0.0.0 --port 5000 --call 'app:createApp'
ENTRYPOINT ["waitress-serve"]
CMD ["--host", "0.0.0.0", "--port", "5000", "--call", "app:createApp" ]