Skip to content
Snippets Groups Projects
Select Git revision
  • abcaa64962d168f7547e907b3317e8a9eb318a67
  • master default protected
  • ci39
  • ci39-python12
  • py39
  • issue#14
  • endianness
  • bugs_i686
  • bug_test_instfreqplot_arm64
  • bug_test_tfplot
  • gitlab-ci
  • debian
  • v1.1.2
  • v1.1.1
  • v1.0.17
  • v1.0.16
  • v1.0.15
  • v1.0.14
  • v1.0.13
  • v1.0.12
  • v1.0.9
  • v1.0.8
  • v1.0.7
  • v1.0.6
  • v1.0.0
25 results

Dockerfile_i686

Blame
  • user avatar
    Denis Arrivault authored
    abcaa649
    History
    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