SpaceNinjaServer/Dockerfile
Sainan 4ca4990f89
Some checks failed
Build / build (push) Has been cancelled
Build Docker image / docker (push) Failing after 45s
chore(docker): use file-based config & precompile code in image (#2202)
Reviewed-on: #2202
Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com>
Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
2025-06-19 04:23:10 -07: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"]