Spaces:
Sleeping
Sleeping
| FROM python:3.10 | |
| WORKDIR /code | |
| # Mise à jour de pip et installation directe via GitHub | |
| RUN pip install --upgrade pip | |
| RUN pip install git+https://github.com/hyperliquid-dex/hyperliquid-python-sdk.git | |
| RUN pip install fastapi uvicorn eth-account | |
| COPY . . | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |