SpaceNinjaServer/Dockerfile
Sainan 53eb0b606b
All checks were successful
Build / build (pull_request) Successful in 55s
Build / build (push) Successful in 50s
chore(docker): use file-based config & precompile code in image
2025-06-18 20:42:37 +02:00

12 lines
164 B
Docker

FROM node:24-alpine3.21
RUN apk add --no-cache bash jq
COPY . /app
WORKDIR /app
RUN npm i --omit=dev
RUN npm run build
ENTRYPOINT ["/app/docker-entrypoint.sh"]