Spaces:
Paused
Paused
File size: 645 Bytes
e9d4f6a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy all application modules
COPY app.py .
COPY slippage_collector.py .
COPY holder_tracker.py .
COPY llm_liquidity_provider.py .
COPY merkle_token_launch.py .
COPY token_launcher.py .
COPY hf_account_collateral.py .
COPY llm_orderbook_integration.py .
COPY llm_mining_rewards.py .
COPY perp_trading_engine.py .
COPY funding_rate_engine.py .
COPY liquidation_system.py .
# Create directories for databases
RUN mkdir -p holder_tracker llm_liquidity_provider perp_trading_engine token_launch
EXPOSE 7860
CMD ["python", "app.py"]
|