Fountain Coach Gitowner-controlled · read only

swarm-orchestrator.git · Dockerfile

swarm-orchestrator.git / Dockerfile

revision 9bec9b9c082f7c0f2ba5052364608da4dc09303f · complete file

FROM python:3.11-slim

RUN apt-get update \
    && apt-get install -y --no-install-recommends docker.io \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app
ENV PYTHONPATH=/app    

COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt \
    && pip install pytest httpx

COPY app/ ./app/
COPY tests/ ./tests/
COPY fountainai-stack.yml ./fountainai-stack.yml

EXPOSE 8000

CMD ["python", "app/entrypoint.py"]