SpaceNinjaServer/Dockerfile
Sainan 6e9f982756
Some checks failed
Build Docker image / docker-arm64 (push) Failing after 38s
Build Docker image / docker-amd64 (push) Successful in 56s
Build / build (push) Has been cancelled
fix(docker): install node-gyp deps to fix arm64 build
2025-06-22 15:48:30 +02:00

12 lines
177 B
Docker

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