add files

This commit is contained in:
Smile Rex
2026-01-26 15:14:10 +03:00
commit 1a88a9769a
18 changed files with 597 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
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"]