a simple pds frontend for listing accounts and generating invite codes
1FROM oven/bun:1 AS build
2WORKDIR /app
3COPY package.json bun.lock ./
4RUN bun install --frozen-lockfile
5COPY . .
6RUN bun run build
7
8FROM oven/bun:1-slim
9WORKDIR /app
10COPY --from=build /app/build ./build
11COPY --from=build /app/node_modules ./node_modules
12EXPOSE 4269
13ENV HOST=0.0.0.0 PORT=4269
14CMD ["bun", "./build/index.js"]