This repository has been archived on 2025-02-19. You can view files and clone it, but cannot push or open issues or pull requests.
casino/frontend/.docker/Dockerfile

16 lines
221 B
Text
Raw Permalink Normal View History

2025-02-05 12:39:53 +01:00
FROM oven/bun:latest AS build
WORKDIR /app
2025-02-05 11:50:23 +01:00
2025-02-05 12:39:53 +01:00
ENV NODE_ENV=production
2025-02-05 14:38:58 +01:00
2025-02-05 12:39:53 +01:00
COPY .. .
RUN bun install --prod
2025-02-05 14:38:58 +01:00
RUN bun run build
2025-02-05 12:39:53 +01:00
2025-02-05 14:38:58 +01:00
FROM oven/bun:latest AS prod
2025-02-05 12:39:53 +01:00
WORKDIR /app
2025-02-05 14:38:58 +01:00
COPY --from=build /app /app
2025-02-05 12:39:53 +01:00
2025-02-05 14:38:58 +01:00
CMD ["bun", "run", "start"]