# Use official Bun image FROM oven/bun:1-alpine # Set working directory WORKDIR /app # Copy application files COPY index.ts . # Run the application CMD ["bun", "run", "index.ts"]