From 8861cb17c8f8f16ad8e6786ae55a1fd7c3c26cdc Mon Sep 17 00:00:00 2001 From: Alexandre Nizoux Date: Sat, 26 Oct 2019 13:36:15 +0200 Subject: [PATCH] Added entrypoint Setting up TZ and GENERIC_TIMEZONE env vars required to use an entrypoint script --- docker/images/n8n/Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docker/images/n8n/Dockerfile b/docker/images/n8n/Dockerfile index b6fff9155f..94e2bfc8f5 100644 --- a/docker/images/n8n/Dockerfile +++ b/docker/images/n8n/Dockerfile @@ -5,9 +5,7 @@ ARG N8N_VERSION RUN if [ -z "$N8N_VERSION" ] ; then echo "The N8N_VERSION argument is missing!" ; exit 1; fi # Update everything and install needed dependencies -RUN apk add --update --no-cache \ - graphicsmagick tzdata -ENV TZ Europe/Berlin +RUN apk add --update graphicsmagick tzdata # # Set a custom user to not have n8n run as root USER root @@ -20,4 +18,7 @@ RUN apk --update add --virtual build-dependencies python build-base && \ WORKDIR /data -CMD "n8n" +COPY docker-entrypoint.sh /usr/local/bin/ +ENTRYPOINT ["docker-entrypoint.sh"] + +CMD ["n8n"]