SpaceNinjaServer/Dockerfile
Sainan 25a91bb504
Some checks failed
Build Docker image / docker-arm64 (push) Failing after 30s
Build Docker image / docker-amd64 (push) Failing after 31s
Build / build (push) Successful in 52s
fix(docker): install python to fix arm64 build
2025-06-22 15:47:18 +02:00

12 lines
177 B
Docker

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