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

Creating entripont.sh as exec form Entrypoint does not support environmental variables. #136

This commit is contained in:
Patrik J. Braun 2020-09-06 17:27:52 +02:00
parent 73a8c4202a
commit f6e665fa79
2 changed files with 12 additions and 4 deletions

View File

@ -25,6 +25,11 @@ ENV NODE_ENV=production \
# flagging dockerized environemnt
PI_DOCKER=true
# 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 && \
chmod +x ./entrypoint.sh
EXPOSE 80
RUN apk add --update-cache --repository https://alpine.global.ssl.fastly.net/alpine/v3.11/community/ \
@ -35,5 +40,4 @@ 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
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
ENTRYPOINT ["node", "./src/backend/index", "--expose-gc", "--config-path=${CONFIG_FILE}"]
ENTRYPOINT ["./entrypoint.sh"]

View File

@ -23,6 +23,11 @@ ENV NODE_ENV=production \
# flagging dockerized environemnt
PI_DOCKER=true
# 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 && \
chmod +x ./entrypoint.sh
EXPOSE 80
RUN apt-get update && apt-get install -y ffmpeg
@ -32,6 +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
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
ENTRYPOINT ["node", "./src/backend/index", "--expose-gc", "--config-path=${CONFIG_FILE}"]
ENTRYPOINT ["./entrypoint.sh"]