Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1# Use official Bun image
2FROM oven/bun:1.3 AS base
3
4# Set working directory
5WORKDIR /app
6
7# Copy package files
8COPY package.json bun.lock* ./
9
10# Install dependencies
11RUN bun install --frozen-lockfile
12
13# Copy source code
14COPY src ./src
15COPY public ./public
16
17ENV PORT=3000
18ENV NODE_ENV=production
19
20EXPOSE 3000
21
22CMD ["bun", "start"]