From d9089a2cd01e4f12e92e04f3235a1fb5f1885817 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 21 Jul 2022 17:09:41 +0200 Subject: [PATCH] Update Dockerfile --- epicgamesfree/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/epicgamesfree/Dockerfile b/epicgamesfree/Dockerfile index daeec4ea3..9aa8c2a5c 100644 --- a/epicgamesfree/Dockerfile +++ b/epicgamesfree/Dockerfile @@ -26,6 +26,8 @@ FROM ${BUILD_FROM} ENV S6_CMD_WAIT_FOR_SERVICES=1 \ S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \ S6_SERVICES_GRACETIME=0 + +RUN sed -i "1a /./entrypoint.sh" /usr/local/bin/docker-entrypoint.sh ################## # 3 Install apps # @@ -65,10 +67,10 @@ RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get # 4 Entrypoint # ################ -RUN chmod 777 /entrypoint.sh +#RUN chmod 777 /entrypoint.sh #WORKDIR / -ENTRYPOINT [ "/usr/bin/env" ] -CMD [ "/entrypoint.sh" ] +#ENTRYPOINT [ "/usr/bin/env" ] +#CMD [ "/entrypoint.sh" ] #SHELL ["/bin/bash", "-o", "pipefail", "-c"] ############