Files

19 lines
323 B
Docker
Raw Permalink Normal View History

2026-06-14 09:00:00 +02:00
FROM oven/bun:1.3.14-alpine AS builder
WORKDIR /app
COPY package.json ./
2026-06-14 09:00:00 +02:00
RUN bun --bun install
COPY . ./
RUN bunx --bun nuxt generate
2026-06-14 09:00:00 +02:00
FROM nginx:alpine AS runner
COPY --from=builder /app/.output/public /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
2026-06-14 09:00:00 +02:00
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]