From fe36594189232300c0a0527f472329c24339bce1 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 1 Aug 2025 20:32:01 +0100 Subject: [PATCH] fix: Corrected duplicated build stage in dockerfile --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index a241a50..26431b0 100644 --- a/dockerfile +++ b/dockerfile @@ -9,7 +9,7 @@ COPY . . RUN pnpm install RUN pnpm run build -FROM git.luke-else.co.uk/luke-else/nodejs:latest AS build +FROM git.luke-else.co.uk/luke-else/nodejs:latest AS run WORKDIR /app COPY --from=build /app/package.json ./package.json