F1 circuit layouts with year-by-year SVGs — manually traced track variations
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 строки
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"]