Skip to content
Snippets Groups Projects
Commit 23482ea5 authored by Florent Jaillet's avatar Florent Jaillet
Browse files

Update dockerfile to allow installing ltfatpy via pip (will be used for pyteuf)

parent 7ee0bbec
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -2,6 +2,9 @@ FROM ubuntu:18.04 ...@@ -2,6 +2,9 @@ FROM ubuntu:18.04
MAINTAINER Florent Jaillet MAINTAINER Florent Jaillet
WORKDIR / WORKDIR /
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
# In the following "apt-get install ..." command, cmake, make, g++,
# libfftw3-dev, and liblapack-dev are not needed for madarrays but are added
# to be able to install ltfatpy via pip
RUN apt-get update && \ RUN apt-get update && \
apt-get upgrade -y && \ apt-get upgrade -y && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
...@@ -12,7 +15,6 @@ RUN apt-get update && \ ...@@ -12,7 +15,6 @@ RUN apt-get update && \
python3-numpy\ python3-numpy\
python3-scipy \ python3-scipy \
python3-matplotlib \ python3-matplotlib \
python3-ltfatpy \
ipython3 \ ipython3 \
python3-six \ python3-six \
python3-numba \ python3-numba \
...@@ -28,7 +30,12 @@ RUN apt-get update && \ ...@@ -28,7 +30,12 @@ RUN apt-get update && \
python3-nbsphinx \ python3-nbsphinx \
jupyter-client \ jupyter-client \
jupyter-notebook \ jupyter-notebook \
pandoc \ pandoc \
cmake \
make \
g++ \
libfftw3-dev \
liblapack-dev \
&& \ && \
apt-get clean apt-get clean
RUN mkdir -p /root/.config/matplotlib && \ RUN mkdir -p /root/.config/matplotlib && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment