1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

adding shebang to the docker entry script

This commit is contained in:
Patrik J. Braun 2020-09-06 20:21:25 +02:00
parent f6e665fa79
commit ce233b563f
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ 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 "node ./src/backend/index --expose-gc --config-path=${CONFIG_FILE}" > ./entrypoint.sh && \
RUN echo "#!/usr/bin/env node ./src/backend/index --expose-gc --config-path=${CONFIG_FILE}" > ./entrypoint.sh && \
chmod +x ./entrypoint.sh
EXPOSE 80

View File

@ -26,7 +26,7 @@ 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 "node ./src/backend/index --expose-gc --config-path=${CONFIG_FILE}" > ./entrypoint.sh && \
RUN echo "#!/usr/bin/env node ./src/backend/index --expose-gc --config-path=${CONFIG_FILE}" > ./entrypoint.sh && \
chmod +x ./entrypoint.sh
EXPOSE 80