1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-08-16 16:40:30 +03:00

fix(core): Define SHELL env variable on docker images (#8670)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2024-02-19 11:50:20 +01:00 committed by GitHub
parent 46fe544b9a
commit e1a4fde207
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -37,5 +37,6 @@ RUN \
mkdir .n8n && \
chown node:node .n8n
ENV SHELL /bin/sh
USER node
ENTRYPOINT ["tini", "--", "/docker-entrypoint.sh"]

View File

@ -21,5 +21,6 @@ COPY docker-entrypoint.sh /
RUN \
mkdir .n8n && \
chown node:node .n8n
ENV SHELL /bin/sh
USER node
ENTRYPOINT ["tini", "--", "/docker-entrypoint.sh"]