SpaceNinjaServer/Dockerfile
Sainan 61003477dc
All checks were successful
Build / build (pull_request) Successful in 54s
Revert "fix(docker): install node-gyp deps to fix arm64 build"
This reverts commit 7ca7147b78c55fa4177b723960fdcc2aa1106fb7.
2025-06-22 22:14:23 +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"]