Commit 512703d6 authored by Kostas Chartsias's avatar Kostas Chartsias
Browse files

Dockerfile for AI_agent

parent e867818e
Loading
Loading
Loading
Loading

AI_agent/Dockerfile

0 → 100644
+21 −0
Original line number Diff line number Diff line
FROM python:3.11-slim

ENV APP_HOST=0.0.0.0
ENV APP_PORT=9013
ENV MCP_SERVER_URL=http://127.0.0.1:8004/mcp

ENV GROQ_API_KEY=""
ENV GROQ_MODEL_NAME=qwen/qwen3-32b

WORKDIR /app

COPY requirements.txt .
RUN pip install --no-cache-dir \
    --trusted-host pypi.org \
    --trusted-host pypi.python.org \
    --trusted-host files.pythonhosted.org \
    -r requirements.txt

COPY . /app/AI_agent

CMD ["python", "-m", "AI_agent.app"]