5d60d33db1
Volledige Foodlinkk Command Center uitbreiding met social automatisering, reclamefolder filters, Proxmox monitoring en documentatie.
14 lines
426 B
Docker
14 lines
426 B
Docker
FROM mcr.microsoft.com/playwright/python:v1.49.1-noble
|
|
|
|
WORKDIR /app
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
tesseract-ocr tesseract-ocr-nld \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt && playwright install chromium
|
|
COPY app ./app
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7790"]
|