Added new n8n image
This commit is contained in:
+4
-29
@@ -1,33 +1,8 @@
|
|||||||
FROM node:current-alpine3.18
|
|
||||||
|
|
||||||
ARG N8N_VERSION=1.11.1
|
ARG N8N_VERSION=1.11.1
|
||||||
|
FROM docker.n8n.io/n8nio/n8n:${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 graphicsmagick tzdata git su-exec jq
|
|
||||||
|
|
||||||
# # Set a custom user to not have n8n run as root
|
|
||||||
USER root
|
USER root
|
||||||
|
RUN apk add --no-cache --update jq bash python git
|
||||||
# Install n8n and the also temporary all the packages
|
|
||||||
# it needs to build it correctly.
|
|
||||||
RUN apk --update add --virtual build-dependencies python build-base ca-certificates && \
|
|
||||||
npm_config_user=root npm install -g full-icu n8n@${N8N_VERSION} && \
|
|
||||||
apk del build-dependencies
|
|
||||||
|
|
||||||
# Install fonts
|
|
||||||
RUN apk --no-cache add --virtual fonts msttcorefonts-installer fontconfig && \
|
|
||||||
update-ms-fonts && \
|
|
||||||
fc-cache -f && \
|
|
||||||
apk del fonts && \
|
|
||||||
find /usr/share/fonts/truetype/msttcorefonts/ -type l -exec unlink {} \;
|
|
||||||
|
|
||||||
ENV NODE_ICU_DATA /usr/local/lib/node_modules/full-icu
|
|
||||||
|
|
||||||
WORKDIR /data
|
WORKDIR /data
|
||||||
|
|
||||||
COPY docker-entrypoint.sh /tmp/docker-entrypoint.sh
|
COPY docker-entrypoint.sh /tmp/docker-entrypoint.sh
|
||||||
ENTRYPOINT ["sh", "/tmp/docker-entrypoint.sh"]
|
ENTRYPOINT ["bash", "/tmp/docker-entrypoint.sh"]
|
||||||
|
EXPOSE 5678/tcp
|
||||||
EXPOSE 5678/tcp
|
|
||||||
Reference in New Issue
Block a user