Live-Crawler-Service (FastAPI+httpx+APScheduler, AidaBot-Muster): scrapt echte OBI/Bauhaus-Seiten, serviert /api/live, Restock-Historie
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
FROM python:3.11-slim
|
||||
WORKDIR /app
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY . .
|
||||
RUN mkdir -p /app/data
|
||||
EXPOSE 8000
|
||||
ENV PYTHONPATH=/app
|
||||
CMD ["uvicorn","app:app","--host","0.0.0.0","--port","8000","--loop","asyncio"]
|
||||
Reference in New Issue
Block a user