Some checks failed
Build Pipeline for de.captica.n8n / Publish Docker (push) Failing after 1m44s
26 lines
849 B
Docker
26 lines
849 B
Docker
FROM node:22-slim
|
|
|
|
|
|
|
|
# Update everything and install needed dependencies
|
|
RUN apt-get update -y && \
|
|
apt-get upgrade -y && \
|
|
apt-get install -y -q graphicsmagick tzdata build-dependencies python build-base ca-certificates && \
|
|
useradd -r -U -d /opt/captica/${NAME_APPLICATION} -c "captica Service User" -m captica
|
|
|
|
# # Set a custom user to not have n8n run as root
|
|
USER captica
|
|
|
|
# Install n8n and the also temporary all the packages
|
|
# it needs to build it correctly.
|
|
RUN N8N_VERSION=$(curl -s https://api.github.com/repos/n8n-io/n8n/releases/latest | jq -r '.tag_name' | sed 's/^v//') && \
|
|
echo "Latest n8n version: ${N8N_VERSION}" && \
|
|
npm_config_user=root npm install -g {N8N_VERSION} && \
|
|
apt-get remove build-dependencies build-base && \
|
|
apt-get autoremove -y && \
|
|
apt-get autoclean -y
|
|
|
|
|
|
WORKDIR /data
|
|
|
|
CMD ["n8n"] |