SpaceNinjaServer/Dockerfile
Sainan f61d15b496
All checks were successful
Build Docker image / docker-arm64 (push) Successful in 1m5s
Build / build (push) Successful in 1m29s
Build Docker image / docker-amd64 (push) Successful in 1m3s
chore: replace 'websocket' with 'undici' (#2253)
This is a lot more lightweight

Reviewed-on: #2253
Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com>
Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
2025-06-23 04:55:19 -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"]