base.dockerfile 644 Bytes
Newer Older
jeremad's avatar
jeremad committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
FROM ubuntu:bionic

ENV DEBIAN_FRONTEND=noninteractive

RUN apt update && apt install -y \
  bison \
  doxygen \
  flex \
  git \
  libceres-dev \
  libeigen3-dev \
  libglm-dev \
  libfaac-dev \
  libfaad-dev \
  libglew-dev \
  libglfw3-dev \
  libmp3lame-dev \
  libopencv-dev \
  libopenexr-dev \
  libportaudio-ocaml-dev \
  librtmp-dev \
  libx264-dev \
  ninja-build \
  portaudio19-dev \
  python-pip \
  qt5-default \
  qtmultimedia5-dev \
  qttools5-dev \
  swig \
  wget
RUN pip install cmake
RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub
RUN apt-key add 7fa2af80.pub
RUN apt clean