quant-strategy-lab / Dockerfile
Trae Assistant
Initial commit with enhanced features and localization
ef93c74
raw
history blame contribute delete
236 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Expose the port
EXPOSE 7860
# Command to run the application
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]