relay filter/appview bootstrap
1FROM oven/bun:latest 2WORKDIR /usr/src/app 3 4COPY package.json bun.lock tsconfig.json ./ 5 6RUN bun install --frozen-lockfile 7 8COPY ./lexicons ./lexicons 9COPY ./src ./src 10 11# Expose the port your server listens on 12EXPOSE 3000 13 14# Set the default command to run your TypeScript spawner directly 15CMD ["bun", "run", "src/index.ts"]