SpaceNinjaServer/Dockerfile
Sainan d1e984a3d2
Some checks failed
Build Docker image / docker-amd64 (push) Failing after 21s
Build Docker image / docker-arm64 (push) Failing after 29s
Build / build (push) Has been cancelled
fix(docker): install python to fix arm64 build
2025-06-22 15:45:21 +02:00

12 lines
171 B
Docker

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