Advertisement
y2kbug

Untitled

Jan 30th, 2022
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 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 install -y tzdata
  5. RUN apt-get install -y \
  6. build-essential \
  7. cmake \
  8. ffmpeg \
  9. libffi-dev \
  10. libgdbm-dev \
  11. libgl1-mesa-glx \
  12. libleptonica-dev \
  13. libncurses5-dev \
  14. libnss3-dev \
  15. libreadline-dev \
  16. libssl-dev \
  17. ninja-build \
  18. pkg-config \
  19. psmisc \
  20. python3.9 \
  21. python3-pip \
  22. python3-opencv \
  23. wget \
  24. zlib1g-dev
  25.  
  26. RUN pip3 install flask[async]
  27. RUN pip3 install flask-sqlalchemy
  28. RUN pip3 install mediapipe
  29. RUN pip3 install opencv-python
  30. RUN pip3 install paho-mqtt
  31. RUN pip3 install pymysql
  32. RUN pip3 install pytz
  33. RUN pip3 install requests
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement