From 4e73c407392d65cc14f1818ffcd135821bdeabb9 Mon Sep 17 00:00:00 2001 From: Tomi Turtiainen <10324676+tomi@users.noreply.github.com> Date: Mon, 16 Jun 2025 16:39:07 +0300 Subject: [PATCH] fix(core): Add missing version label to docker image (#16386) --- docker/images/n8n/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/images/n8n/Dockerfile b/docker/images/n8n/Dockerfile index 6eb6b56447..f7249c50fd 100644 --- a/docker/images/n8n/Dockerfile +++ b/docker/images/n8n/Dockerfile @@ -1,5 +1,4 @@ ARG NODE_VERSION=22 -ARG N8N_VERSION=snapshot # 1. Create an image to build n8n FROM --platform=linux/amd64 n8nio/base:${NODE_VERSION} AS builder @@ -25,6 +24,7 @@ RUN NODE_ENV=production DOCKER_BUILD=true pnpm --filter=n8n --prod --no-optional FROM n8nio/base:${NODE_VERSION} ENV NODE_ENV=production +ARG N8N_VERSION=snapshot ARG N8N_RELEASE_TYPE=dev ENV N8N_RELEASE_TYPE=${N8N_RELEASE_TYPE}