Files
rickroll/Dockerfile
ytshih 29793e655c
All checks were successful
deploy / release-image (push) Successful in 1m47s
deploy / deploy (push) Successful in 46s
initial commit
2024-10-17 07:51:46 +00:00

11 lines
188 B
Docker

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