# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Use a lightweight Linux distribution with bun
FROM jarredsumner/bun:edge as builder
# Set working directory
WORKDIR /app
# Copy all files to the container
COPY . .
# Install dependencies using bun
RUN bun install
# Run the application
CMD ["bun", "index.ts"]