tensortrade-api / Dockerfile
EvanD1st
Fix missing openai dependency
a28098e
Raw
History Blame Contribute Delete
563 Bytes
# Use standard Python
FROM python:3.10
# Set the working directory inside the Hugging Face server
WORKDIR /code
# Copy your requirements and install them
COPY ./backend/requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Install the missing openai dependency for the OpenRouter Risk Manager
RUN pip install openai
# Copy your entire backend code
COPY ./backend /code
# Hugging Face Spaces strictly requires servers to run on port 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]