Files
ems/frontend/Dockerfile
Dusan Vojacek 2cc5ccfda7 x
2026-03-20 14:29:43 +01:00

17 lines
464 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Stage 1 build static assets (bookworm: glibc @tailwindcss/oxide má spolehlivé prebuildy; alpine/musl často selže při npm ci)
FROM node:20-bookworm-slim AS builder
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
# Stage 2 serve with nginx
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]