feat: Package OpenWebUI upload script as Docker container

This commit is contained in:
Rushabh Gosar
2026-01-07 18:51:20 -08:00
parent f22c8e042c
commit 0534b4bd7f
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY upload_to_openwebui.py .
# Command to run the script. It needs access to the source data on the host.
# We'll use a bind mount for the source data.
CMD ["python", "upload_to_openwebui.py"]