mirror of https://github.com/SystemRage/py-kms.git
Removed useless CMD statement (entrypoint does not even respect that)
This commit is contained in:
parent
7bea3a2cb0
commit
5d13d09851
|
@ -48,5 +48,4 @@ EXPOSE ${PORT}/tcp
|
|||
|
||||
HEALTHCHECK --interval=5m --timeout=3s --start-period=10s --retries=4 CMD echo | nc -z ${IP%% *} ${PORT} || exit 1
|
||||
|
||||
ENTRYPOINT ["/usr/bin/python3", "-u","/usr/bin/entrypoint.py"]
|
||||
CMD ["/usr/bin/start.py"]
|
||||
ENTRYPOINT ["/usr/bin/python3", "-u", "/usr/bin/entrypoint.py"]
|
||||
|
|
|
@ -58,5 +58,4 @@ EXPOSE 8080
|
|||
|
||||
HEALTHCHECK --interval=5m --timeout=3s --start-period=10s --retries=4 CMD echo | nc -z ${IP%% *} ${PORT} || exit 1
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/python3","-u","/usr/bin/entrypoint.py" ]
|
||||
CMD ["/usr/bin/start.py"]
|
||||
ENTRYPOINT [ "/usr/bin/python3", "-u", "/usr/bin/entrypoint.py" ]
|
||||
|
|
Loading…
Reference in New Issue