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.

31 lines
639B

  1. FROM ubuntu:xenial
  2. RUN apt-get update \
  3. && apt-get install -y --no-install-recommends software-properties-common \
  4. && add-apt-repository -y ppa:ubuntu-toolchain-r/test \
  5. && apt-get update \
  6. && apt-get install -y --no-install-recommends \
  7. autoconf \
  8. automake \
  9. cmake \
  10. curl \
  11. g++ \
  12. git \
  13. libasound2-dev \
  14. libgl1-mesa-dev \
  15. libglu1-mesa-dev \
  16. libgtk2.0-dev \
  17. libtool \
  18. libudev-dev \
  19. libxcursor-dev \
  20. libxinerama-dev\
  21. libxrandr-dev \
  22. make \
  23. tar \
  24. unzip \
  25. wget \
  26. zip \
  27. zlib1g-dev \
  28. && add-apt-repository -yr ppa:ubuntu-toolchain-r/test \
  29. && apt-get autoremove --purge \
  30. && apt-get clean