Spaces:
Runtime error
Runtime error
FROM ubuntu:20.04 | |
RUN ln -snf /usr/share/zoneinfo/$CONTAINER_TIMEZONE /etc/localtime && echo $CONTAINER_TIMEZONE > /etc/timezone | |
RUN apt-get update -y | |
RUN apt-get install -y python3 python3-pip python3-opencv | |
RUN apt-get install -y libcurl4-openssl-dev libssl-dev | |
RUN mkdir -p /home/FaceOnLive_v6 | |
RUN mkdir -p /home/FaceOnLive_v6/facewrapper | |
WORKDIR /home/FaceOnLive_v6 | |
COPY ./facewrapper ./facewrapper | |
COPY ./facewrapper/libs/libimutils.so /usr/lib | |
COPY ./gradio ./gradio | |
COPY ./openvino /usr/lib | |
COPY ./app.py ./app.py | |
COPY ./run.sh . | |
COPY ./requirements.txt ./requirements.txt | |
RUN pip3 install -r requirements.txt | |
RUN chmod a+x run.sh | |
CMD ["./run.sh"] | |
EXPOSE 8000 |