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
2025-02-05 12:39:53 +01:00

16 lines
224 B
Docker

FROM oven/bun:latest AS build
WORKDIR /app
ENV NODE_ENV=production
COPY .. .
RUN bun install --prod
FROM oven/bun:latest AS production
WORKDIR /app
RUN bun install --prod
EXPOSE 3001
CMD ["bun", "start", "-p", "3001"]