Advertisement
y2kbug

Untitled

Jan 30th, 2022
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. FROM ubuntu:20.04
  2.  
  3. RUN apt-get update
  4. RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata
  5.  
  6. RUN apt-get install -y python3-dev python3-pip python3-opencv
  7.  
  8. RUN pip3 install flask[async]
  9. RUN pip3 install flask-sqlalchemy
  10. RUN pip3 install mediapipe
  11.  
  12. RUN pip3 install paho-mqtt
  13. RUN pip3 install pymysql
  14. RUN pip3 install pytz
  15. RUN pip3 install requests
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement