Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
fork

Configure Feed

Select the types of activity you want to include in your feed.

at redirects 27 lines 371 B view raw
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 ./ 9 10# Copy Bun configuration 11COPY bunfig.toml ./ 12 13COPY tsconfig.json ./ 14 15# Install dependencies 16RUN bun install 17 18# Copy source code 19COPY src ./src 20COPY public ./public 21 22ENV PORT=8000 23ENV NODE_ENV=production 24 25EXPOSE 8000 26 27CMD ["bun", "start"]