Skip to content
Snippets Groups Projects
Select Git revision
  • 5c0f57429cd720b68fd43c7669375c6d8ecfb887
  • master default protected
2 results

normalize.v8.0.1.min.css

Blame
  • Dockerfile_cython_X86_64 579 B
    FROM ubuntu:latest
    MAINTAINER Denis Arrivault
    WORKDIR /
    RUN apt-get update && apt-get install -y \
        cmake \
        libfftw3-dev \
        liblapack-dev \
        python3 \
        python3-dev \
        python3-pip \
        cython \
        python3-tk \
        python3-matplotlib
    RUN pip3 install --upgrade pip
    RUN pip3 install scipy nose coverage pytest pytest-cov Sphinx sphinxcontrib-bibtex
    
    # Copy the ltfatpy sdist in the docker directory and uncomment the following line
    # if you want to include ltfatpy sources in the docker image :
    # ADD ltfatpy-1.0.8.tar.gz /
    
    # cleanup
    RUN apt-get -qy autoremove