fix: Corrected duplicated build stage in dockerfile

This commit is contained in:
2025-08-01 20:32:01 +01:00
parent e2b276dc0e
commit fe36594189

View File

@@ -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