FROM oven/bun:1
WORKDIR /app
COPY package.json ./
RUN bun install --production
COPY server.ts bootstrap.ts defaults.json index.html ./
COPY assets/ ./assets/
EXPOSE 3000
CMD ["bun", "run", "server.ts"]
