You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
477 B

  1. FROM ubuntu:20.04
  2. RUN apt update; \
  3. apt upgrade -y; \
  4. apt install software-properties-common -y; \
  5. add-apt-repository ppa:deadsnakes/ppa; \
  6. apt update;
  7. RUN cd home; \
  8. apt install git -y; \
  9. git clone https://github.com/anki/vector-python-sdk.git; \
  10. apt install python3-pip -y; \
  11. apt-get install python3-pil.imagetk; \
  12. python3 -m pip install --user anki_vector; \
  13. python3 -m pip install --user --upgrade anki_vector; \
  14. pip install protobuf==3.20.*;
  15. #CMD ["bash"]