Files
LabWise/Dockerfile.frontend

14 lines
320 B
Docker
Raw Permalink Normal View History

2026-04-24 18:30:10 -05:00
ARG NODE_VERSION=25-alpine
FROM node:${NODE_VERSION} AS builder
2026-04-01 15:46:28 +00:00
WORKDIR /app
2026-04-10 00:38:47 -05:00
COPY package.json package-lock.json* ./
2026-04-24 18:30:10 -05:00
RUN npm install
2026-04-01 15:46:28 +00:00
COPY . .
RUN npx vite build
# ---- Serve stage ----
FROM nginx:1.27-alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 5173