foundary-test-1770771180/Dockerfile
rdev-worker c26d832960
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: Set up the monorepo workspace. Ensure the root README describes a pro...
2026-02-11 00:55:16 +00:00

11 lines
196 B
Docker

# Build stage
FROM node:20-alpine AS build
WORKDIR /app
COPY . .
# Runtime stage
FROM nginx:alpine
COPY --from=build /app/docs /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]