SpaceNinjaServer/Dockerfile
Sainan 71d2ea7048
All checks were successful
Build / build (pull_request) Successful in 1m15s
chore: use raw running in docker image
We can rely on having up-to-date Node.js here, and reducing the size by like ~55 MiB seems decent.
2025-08-27 22:12:10 +02:00

12 lines
196 B
Docker

FROM node:24-alpine3.21
RUN apk add --no-cache bash jq
COPY . /app
WORKDIR /app
RUN npm i --omit=dev --omit=optional
RUN date '+%d %B %Y' > BUILD_DATE
ENTRYPOINT ["/app/docker-entrypoint.sh"]