Files
meet-front/Dockerfile
Smile Rex 503bcaddcc
All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m13s
update ports
2026-01-26 16:43:45 +03:00

13 lines
236 B
Docker

FROM oven/bun AS build
WORKDIR /app
COPY bun.lock package.json ./
RUN bun install
COPY . .
RUN bun run build
FROM oven/bun:slim
WORKDIR /app
COPY --from=build /app/build ./build
EXPOSE 3000
CMD ["bunx", "serve", "build", "-l", "3000"]