Files
llm-bot-framework/Dockerfile
2026-02-12 17:48:00 -06:00

11 lines
153 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "api/main.py"]