mywork / Dockerfile
saroj502's picture
updated
c9a42dd
raw
history blame contribute delete
224 Bytes
FROM python:3.9
WORKDIR /mywork
COPY ./Untitled.ipynb /code/Untitled.ipynb
RUN pip install --no-cache-dir --upgrade -r /code/Untitled.ipynb
COPY . .
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]