rogerxavier's picture
Update Dockerfile
89621d4 verified
raw
history blame
458 Bytes
FROM python:3.9
RUN apt update && apt install -y libgl1-mesa-glx imagemagick
RUN pip install -U pip
# #RUN pip install -U pyyaml
# RUN pip install -U runway-python
# #runway --force-reinstall
# #RUN pip install -U tensorflow
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
ENV IMAGEMAGICK_BINARY=.magick
EXPOSE 7860
#compo-singleone-v1-dev-acc.py
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]