CoolFace
Apppublic

HUGOOME/cathagra

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile41 linesDownload Raw Back to root
1FROM ubuntu:latest2 3RUN apt update4 5RUN apt upgrade -y6 7RUN apt install git -y8 9RUN apt install cmake -y 10 11RUN apt install python3 -y 12 13RUN apt install python3-pip -y 14 15 16RUN ls -l17 18RUN git clone https://github.com/VYOM00907/deplo.git19 20RUN cd deplo &&  pip install  -r pyreq.txt 21 22RUN cd deplo &&  pip install  pytz23 24RUN cd deplo &&  pip install Flask25 26WORKDIR deplo27 28RUN lscpu29 30RUN cd testowa && touch non.txt && cd ..31 32WORKDIR testowa33 34RUN chmod a+rwx non.txt35 36RUN touch mok.txt && chmod a+rwx mok.txt37 38CMD bash -c "nohup python3 testa.py > /dev/null &" && ps -aux && uvicorn noda:app --host 0.0.0.0 --port 7860 39 40 41