SuperAI_Forecast / Dockerfile
Thang6822's picture
Update Dockerfile
e7191dd verified
Raw
History Blame Contribute Delete
257 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"]