Henok21's picture
Update Dockerfile
58437b5
raw
history blame contribute delete
323 Bytes
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"]