Files
pdf_oralia_vibe/frontend/Dockerfile
Bertrand Benjamin d271697d43 feat: add Docker deployment configuration
Add backend and frontend Dockerfiles, docker-compose setup with nginx
reverse proxy, .dockerignore files and Makefile for dev/prod workflows.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 05:33:41 +01:00

13 lines
252 B
Docker

FROM node:22-alpine AS build
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80