Spaces:
Sleeping
Sleeping
FROM python:3.9 | |
WORKDIR /code | |
COPY ./requirement.txt /code/requirement.txt | |
COPY pipeline.job /code/pipeline.job | |
RUN pip install --no-cache-dir --upgrade -r /code/requirement.txt | |
COPY . . | |
#CMD ["python", "app.py", "--host", "0.0.0.0", "--port", "7860"] | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |