Unify parsing workers, analytics API with PostgreSQL, map UI, and PI distribution into centers/ with Docker Compose. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
205 B
Docker
14 lines
205 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY workers/ ./workers/
|
|
COPY worker.py .
|
|
|
|
ENV PYTHONPATH=/app
|
|
|
|
CMD ["python", "worker.py"]
|