react-docker-optimization/Dockerfile

11 lines
282 B
Text
Raw Permalink Normal View History

2025-01-04 17:39:34 +01:00
# Build stage of the application
2025-01-05 18:06:10 +01:00
FROM oven/bun AS build
2025-01-04 17:39:34 +01:00
WORKDIR /app
COPY . .
2025-01-05 18:06:10 +01:00
RUN bun i && bun run build
2025-01-04 17:39:34 +01:00
# Production stage to run the application
2025-01-04 22:06:17 +01:00
FROM nginx:stable-alpine AS production
2025-01-05 18:06:10 +01:00
COPY --from=build /app/dist /usr/share/nginx/html
2025-01-04 21:39:24 +01:00
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]