recipe_app/frontend/Dockerfile

16 lines
341 B
Text
Raw Normal View History

2026-01-28 13:17:57 -08:00
FROM node:22-alpine AS builder
2025-07-15 12:02:11 -07:00
2026-01-28 13:17:57 -08:00
WORKDIR /app
COPY package*.json tsconfig*.json postcss.config.js tailwind.config.js eslint.config.js vite.config.ts index.html ./
COPY src ./src
2025-07-15 12:02:11 -07:00
2026-01-28 13:17:57 -08:00
RUN apk update && apk upgrade
RUN npm install
RUN npm run build
2025-07-15 12:02:11 -07:00
2026-01-28 13:17:57 -08:00
FROM caddy:2.10
COPY Caddyfile /etc/caddy/Caddyfile
COPY --from=builder /app/dist /srv
2025-07-15 12:02:11 -07:00
EXPOSE 80