Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
madarrays
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
skmad-suite
madarrays
Commits
23482ea5
There was a problem fetching the pipeline summary.
Commit
23482ea5
authored
6 years ago
by
Florent Jaillet
Browse files
Options
Downloads
Patches
Plain Diff
Update dockerfile to allow installing ltfatpy via pip (will be used for pyteuf)
parent
7ee0bbec
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker/Dockerfile_ubuntu_18.04
+9
-2
9 additions, 2 deletions
docker/Dockerfile_ubuntu_18.04
with
9 additions
and
2 deletions
docker/Dockerfile_ubuntu_18.04
+
9
−
2
View file @
23482ea5
...
@@ -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 \
...
@@ -29,6 +31,11 @@ RUN apt-get update && \
...
@@ -29,6 +31,11 @@ RUN apt-get update && \
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 && \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment