Files
netfelix-audio-fix/Dockerfile
Felix Förtsch b5d7bda570
Some checks failed
Build and Push Docker Image / build (push) Failing after 12s
add vite debug output to diagnose build failure
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-02 22:04:08 +01:00

17 lines
253 B
Docker

FROM oven/bun:1 AS base
WORKDIR /app
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile
COPY . .
RUN DEBUG=vite:* bun run build 2>&1
EXPOSE 3000
ENV DATA_DIR=/data
ENV PORT=3000
VOLUME ["/data"]
CMD ["bun", "run", "server/index.tsx"]