fix: Add required .npmrc into dockerfile
All checks were successful
Build and Push Development Docker Image / build-and-push (push) Successful in 1m1s

This commit is contained in:
2025-09-16 11:44:35 +01:00
parent de33ca3814
commit 188f4616ea

View File

@@ -13,6 +13,7 @@ FROM git.luke-else.co.uk/luke-else/nodejs:latest AS run
WORKDIR /app
COPY --from=build /app/package.json ./package.json
COPY --from=build /app/.npmrc ./.npmrc
COPY --from=build /app/build ./build
RUN pnpm install --prod