rogerxavier's picture
Update Dockerfile
b875f96 verified
raw
history blame
406 Bytes
FROM registry.hf.space/rogerxavier-moviepy-with-manga:latest
RUN apt update && apt install -y sudo imagemagick
# RUN apt upgrade -y
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 server.py .
EXPOSE 7860
CMD ["python", "server.py"]