SuperAI_Forecast / Dockerfile
Thang6822's picture
Upload folder using huggingface_hub
730b6c0 verified
Raw
History Blame Contribute Delete
271 Bytes
FROM python:3.11
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Install timesfm from local source (vendored)
RUN pip install -e ./libs/timesfm[torch]
ENV PORT=7860
EXPOSE 7860
CMD ["python", "app.py"]