deprecated old intake folder

This commit is contained in:
serversdwn
2025-12-06 04:38:11 -05:00
parent 4acaddfd12
commit 8c914906e5
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "intake:app", "--host", "0.0.0.0", "--port", "7080"]