Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • 1.8.12
  • 1.8.10
  • 1.8.9
  • 1.8.8
  • 1.8.7
  • 1.8.6
  • 1.8.5
  • 1.8.4
  • 1.8.3
  • 1.8.2
  • 1.8.1
  • 1.8.0
  • 1.7.4
  • 1.7.3
  • 1.7.2
  • 1.7.1
  • 1.7.0
  • 1.6.1
  • 1.6.0
  • 1.5.4
21 results

.visimpl.desktop

Blame
  • Dockerfile 1.15 KiB
    FROM centos/python-36-centos7
    
    MAINTAINER Collaboratory Platform <platform@humanbrainproject.eu>
    
    ENV UPGRADE_PIP_TO_LATEST=1 ENABLE_INIT_WRAPPER=1
    
    USER root
    
    # Install all OS dependencies for notebook server that starts but lacks all
    # features (e.g., download as all possible file formats)
    RUN yum install -y epel-release && \
            yum-config-manager --enable epel && \
            yum  groupinstall -y 'Development Tools' && \
            yum install -y \
            bzip2-devel \
            cmake \
            cmake3 \
            csh \
            curl \
            Cython \
            freetype-devel \
            gsl-devel \
            hdf5-devel \
            liberation-fonts \
            libtool-ltdl-devel \
            libXext-devel \
            libXrender \
            llvm \
            lsof \
            mpich \
            mpich-devel \
            ncurses-devel \
            pandoc \
            python-devel \
            readline-devel \
            texlive-latex \
            unzip \
            vim \
            wget \
            && yum  -y clean all
    
    # Set the Switzerland timezone
    RUN ln -sf /usr/share/zoneinfo/Europe/Zurich /etc/localtime
    
    ENV MPICC=/usr/lib64/mpich/bin/mpicc
    
    ENV XDG_CACHE_HOME /home/$NB_USER/.cache/
    
    EXPOSE 8080
    
    USER 1000