aiupdates / Dockerfile
Nhughes09
V8.5: Fix UndefinedError and Ollama Model Listing
6b575f3
raw
history blame contribute delete
284 Bytes
FROM python:3.9-slim
WORKDIR /app
# Install deps
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source
COPY . .
# Expose port
EXPOSE 7860
# Run
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
# Force Rebuild: 2026-01-02-1715