Files
statespaces/dockerfile
Christoph Urlacher c936f13059
All checks were successful
Build StateSpaces Docker Image / statespaces-docker (push) Successful in 38s
Add Dockerfile + Workflow
2025-08-31 19:33:51 +02:00

12 lines
251 B
Plaintext

FROM node:24-alpine AS builder
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
RUN npm run build
FROM busybox:1.30 AS runner
WORKDIR /app
COPY --from=builder /app/dist .
CMD ["busybox", "httpd", "-f", "-v", "-p", "8080"]