Merge pull request 'fix: Corrected duplicated build stage in dockerfile' (#50) from chore/base-image into development
All checks were successful
Build and Push Development Docker Image / build-and-push (push) Successful in 50s

Reviewed-on: #50
This commit is contained in:
2025-08-01 19:32:46 +00:00

View File

@@ -9,7 +9,7 @@ COPY . .
RUN pnpm install RUN pnpm install
RUN pnpm run build 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 WORKDIR /app
COPY --from=build /app/package.json ./package.json COPY --from=build /app/package.json ./package.json