Files
meet-front/Dockerfile
Smile Rex fe2927be2e
All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m27s
add server file
2026-01-26 17:13:45 +03:00

14 lines
243 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
COPY server.ts ./server.ts
EXPOSE 3000
CMD ["bun", "server.ts"]