react-docker-optimization/Dockerfile

11 lines
440 B
Text
Raw Permalink Normal View History

2025-01-04 17:39:34 +01:00
# Build stage of the application
2025-11-01 01:02:18 +01:00
FROM oven/bun@sha256:9c5d3c92b234b4708198577d2f39aab7397a242a40da7c2f059e51b9dc62b408 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-11-01 01:02:18 +01:00
FROM cgr.dev/chainguard/nginx@sha256:f36edf9b236aa20589cf8127dd4dd574137819e6b5d9f756aff3f2c52b372c51 AS production
2025-01-05 18:06:10 +01:00
COPY --from=build /app/dist /usr/share/nginx/html
2025-01-06 19:42:13 +01:00
EXPOSE 8080
ENTRYPOINT ["nginx", "-g", "daemon off;"]