Files
agent-s-rag-pamyatyu/Dockerfile
T

17 lines
294 B
Docker

FROM python:3.11-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY src ./src
COPY data ./data
COPY main.py .
# Expose port if needed (not required for CLI)
# EXPOSE 8000
CMD ["python", "src/main.py"]