Files
meet-front/Dockerfile
Smile Rex 1a88a9769a add files
2026-01-26 15:14:10 +03:00

13 lines
250 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", "tcp://0.0.0.0:3000"]