F1 circuit layouts with year-by-year SVGs — manually traced track variations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
298B

  1. FROM python:3.12-slim
  2. WORKDIR /app
  3. RUN pip install --no-cache-dir fastapi uvicorn fastf1 python-slugify
  4. COPY cdn-api.py circuits_service.py ergast_service.py ./
  5. COPY models/ ./models/
  6. COPY circuits/ ./circuits/
  7. EXPOSE 8000
  8. CMD ["uvicorn", "cdn-api:app", "--host", "0.0.0.0", "--port", "8000"]