Skip to content
Snippets Groups Projects
Select Git revision
  • 248bfbf7e30c8d2e2619fdd331173c224794e98a
  • main default protected
2 results

example.f0.npz

Blame
  • Dockerfile_i686 563 B
    FROM ioft/i386-ubuntu
    MAINTAINER Denis Arrivault
    WORKDIR /
    RUN apt-get update && apt-get install -y \
        cmake \
        libfftw3-dev \
        liblapack-dev \
        python3 \
        python3-dev \
        python3-pip \
        python3-tk \
        python3-matplotlib \
        python3-scipy
    RUN pip3 install --upgrade pip
    RUN pip3 install nose coverage pytest pytest-cov
    
    # 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 ../dist/ltfatpy-1.0.8.tar.gz /
    
    # cleanup
    RUN apt-get -qy autoremove