diff --git a/Dockerfile b/Dockerfile index ef2d58d..abc7a06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,7 +58,3 @@ RUN sed -i "s/listen [0-9]*;/listen ${CONTAINER_PORT};/" $CONF_NGINX_SITE && \ RUN goss -g /tests/ubuntu/nginx.goss.yaml validate && \ /aufs_hack.sh - -# NOTE: intentionally NOT using s6 init as the entrypoint -# This would prevent container debugging if any of those service crash -CMD ["/bin/bash", "/run.sh"] diff --git a/Dockerfile-alpine b/Dockerfile-alpine index 6095734..caf99d8 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -44,7 +44,3 @@ RUN sed -i "s/listen [0-9]*;/listen ${CONTAINER_PORT};/" $CONF_NGINX_SITE && \ RUN goss -g /tests/alpine/nginx.goss.yaml validate && \ /aufs_hack.sh - -# NOTE: intentionally NOT using s6 init as the entrypoint -# This would prevent container debugging if any of those service crash -CMD ["/bin/bash", "/run.sh"] diff --git a/Dockerfile-centos b/Dockerfile-centos index a032143..dc695a6 100644 --- a/Dockerfile-centos +++ b/Dockerfile-centos @@ -43,7 +43,3 @@ RUN sed -i "s/listen [0-9]*;/listen ${CONTAINER_PORT};/" $CONF_NGINX_SITE && \ RUN goss -g /tests/centos/nginx.goss.yaml validate && \ /aufs_hack.sh - -# NOTE: intentionally NOT using s6 init as the entrypoint -# This would prevent container debugging if any of those service crash -CMD ["/bin/bash", "/run.sh"]