airmicrodrip / Dockerfile
josephrw's picture
Upload folder using huggingface_hub
e9d4f6a verified
Raw
History Blame Contribute Delete
645 Bytes
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"]