ANS_Time_Predictor / Dockerfile
JunYuanNYP's picture
Update Dockerfile
e3d2373 verified
raw
history blame contribute delete
167 Bytes
FROM python:3.13
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]