Dockerfile 359 B

123456789101112131415
  1. FROM ubuntu:bionic
  2. RUN apt -y update
  3. RUN apt -y upgrade
  4. RUN apt -y dist-upgrade
  5. RUN apt -y autoremove
  6. RUN apt -y install --fix-missing
  7. RUN apt -y install apt-utils
  8. RUN apt -y install git scons build-essential g++
  9. RUN apt -y install protobuf-compiler python3-protobuf python3
  10. RUN git clone https://github.com/nanopb/nanopb.git
  11. RUN cd nanopb/tests && scons