- apps/api : API REST Node.js/Fastify + PostgreSQL/PostGIS - apps/geocoder : Worker Python géocodage Nominatim - apps/worker : Scraper Python Metal-Archives - apps/web : Frontend statique Leaflet/clustering/heatmap - infra/ : docker-compose + init.sql Déployé via Coolify + Traefik sur VPS OVH.
9 lines
212 B
Docker
9 lines
212 B
Docker
FROM mcr.microsoft.com/playwright/python:v1.49.0-jammy
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY src ./src
|
|
ENV PYTHONUNBUFFERED=1
|
|
CMD ["python", "src/run.py"]
|