Files
teaching-design/Dockerfile
2026-06-16 09:37:50 -06:00

32 lines
627 B
Docker

# Build frontend
FROM oven/bun:1 AS builder
WORKDIR /app
ARG BUN_REGISTRY=https://registry.npmmirror.com
ENV BUN_CONFIG_REGISTRY=${BUN_REGISTRY}
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
# Production runtime
FROM oven/bun:1-slim AS runner
WORKDIR /app
ARG BUN_REGISTRY=https://registry.npmmirror.com
ENV BUN_CONFIG_REGISTRY=${BUN_REGISTRY}
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile --production
COPY server/ ./server/
COPY shared/ ./shared/
COPY --from=builder /app/dist ./dist/
RUN mkdir -p data
EXPOSE 3001
CMD ["bun", "run", "server/index.ts"]