Files
mafuyu-kirisu/Dockerfile
ytshih c0ba0c3c42
All checks were successful
release-tag / release-image (push) Successful in 1m50s
Fix: Dockerfile build process
2024-10-11 11:58:38 +00:00

11 lines
184 B
Docker

FROM node:22.4-slim AS build
WORKDIR /work
COPY . .
RUN npm ci && npm run build
FROM gcr.io/distroless/nodejs22-debian12
WORKDIR /work
COPY --from=build /work /work
CMD ["index.js"]