Spaces:
Running
Running
File size: 209 Bytes
fdab00f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM oven/bun:1
WORKDIR /app
COPY package.json bun.lockb* ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
EXPOSE 4173
CMD ["bun", "run", "preview", "--host", "0.0.0.0", "--port", "4173"] |