All checks were successful
ci/woodpecker/pr/workflow Pipeline was successful
11 lines
No EOL
440 B
Docker
11 lines
No EOL
440 B
Docker
# Build stage of the application
|
|
FROM oven/bun@sha256:8b5e8d3b6a734ae438c7c6f1bdc23e54eb9c35a0e2e3099ea2ca0ef781aca23b AS build
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN bun i && bun run build
|
|
|
|
# Production stage to run the application
|
|
FROM cgr.dev/chainguard/nginx@sha256:323ab057a40d063b69e24e49561fb329d82283a7b32608c68abcff88a6c4c282 AS production
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["nginx", "-g", "daemon off;"] |