Spaces:
Sleeping
Sleeping
File size: 319 Bytes
c071543 b3dc1c1 8604887 b3dc1c1 | 1 2 3 4 5 6 7 8 | 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"] |