sipi icon indicating copy to clipboard operation
sipi copied to clipboard

missing dependencies in documentation

Open subotic opened this issue 9 years ago • 2 comments

subotic avatar May 17 '16 09:05 subotic

To be able to build Sipi under an Ubuntu 14.04 based docker image, I needed to do a few additional steps:

# Silence debconf messages
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections

# Install.
RUN \
  sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \
  apt-get update && \
  apt-get -y upgrade && \
  apt-get -y install software-properties-common && \
  add-apt-repository ppa:ubuntu-toolchain-r/test && \
  apt-get update && \
  apt-get -y install g++-5 && \
  apt-get -y install cmake && \
  apt-get -y install openjdk-7-jdk && \
  apt-get -y install build-essential && \
  apt-get -y install byobu curl git htop man vim wget && \
  apt-get -y install unzip && \
  apt-get -y install zlib1g-dev && \
  apt-get -y install gettext && \
  apt-get -y install doxygen && \
  apt-get -y install libreadline-dev && \
  apt-get -y install liblog4cpp5-dev && \
  ln -sf /usr/bin/g++-5 /usr/bin/g++ && \
  rm -rf /var/lib/apt/lists/*

# Set environment variables
ENV JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64" CXX="g++-5" CC="gcc-5"

This is an excerpt from https://github.com/subotic/docker-sipi-base/blob/master/14.04/Dockerfile. A few of those dependencies are not in the documentation (for Ubuntu anyway).

subotic avatar May 18 '16 14:05 subotic

#16 is also included in the above list.

subotic avatar May 18 '16 14:05 subotic