From da83d63fa4dd10435417cd4304edcc0ca0cf8c6e Mon Sep 17 00:00:00 2001 From: "Patrik J. Braun" Date: Sun, 6 Sep 2020 22:54:28 +0200 Subject: [PATCH] entrypoint test --- docker/debian-stretch/Dockerfile.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/debian-stretch/Dockerfile.build b/docker/debian-stretch/Dockerfile.build index 45b9a383..a9ad16a4 100644 --- a/docker/debian-stretch/Dockerfile.build +++ b/docker/debian-stretch/Dockerfile.build @@ -26,8 +26,8 @@ ENV NODE_ENV=production \ # after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible # This trick is needed as entrypoint in exec form does not support ENV variables # and in shell form ENV variables were not properly passed to pigallry2 -RUN echo "#!/usr/bin/env node ./src/backend/index --expose-gc --config-path=${CONFIG_FILE}" > ./entrypoint.sh && \ - chmod +x ./entrypoint.sh +#RUN echo -e '#!/bin/bash \n node ./src/backend/index --expose-gc --config-path=${CONFIG_FILE}' > ./entrypoint.sh && \ +# chmod +x ./entrypoint.sh EXPOSE 80 RUN apt-get update && apt-get install -y ffmpeg @@ -37,5 +37,5 @@ HEALTHCHECK --interval=40s --timeout=30s --retries=3 --start-period=60s \ CMD wget --quiet --tries=1 --no-check-certificate --spider \ http://localhost:80/heartbeat || exit 1 -ENTRYPOINT ["./entrypoint.sh"] +ENTRYPOINT node ./src/backend/index --expose-gc --config-path=${CONFIG_FILE}