SuperAI_Forecast / Dockerfile
Thang6822
Deploy OHLC4 forecast line and Hugging Face runtime fixes
43b0e93
Raw
History Blame
170 Bytes
FROM python:3.11
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
ENV PORT=7860
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]