# syntax=docker/dockerfile:1 FROM oven/bun:1.2.2-alpine WORKDIR /app COPY index.ts ./index.ts ENV PORT=8788 EXPOSE 8788 CMD ["bun","run","index.ts"]