Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
TopFarm2
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
Service Desk
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
TOPFARM
TopFarm2
Commits
3341e5a5
Commit
3341e5a5
authored
6 years ago
by
Jennifer Rinker
Browse files
Options
Downloads
Patches
Plain Diff
adding make
parent
a702a2c7
No related branches found
No related tags found
1 merge request
!94
Handle disabled mpi
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker/Dockerfile_simple
+8
-5
8 additions, 5 deletions
docker/Dockerfile_simple
with
8 additions
and
5 deletions
docker/Dockerfile_simple
+
8
−
5
View file @
3341e5a5
...
...
@@ -7,16 +7,19 @@ MAINTAINER Jenni Rinker <rink@dtu.dk>
# get list of update linux files and install lib for matplotlib
# (anaconda3:5.0.0 image doesn't have the library)
RUN apt update && \
apt install libgl1-mesa-glx -y
# also install "make" because image doesn't have it either
RUN apt-get update && \
apt-get install make && \
apt-get install libgl1-mesa-glx -y
# use cond
e
to update itself and install packages not in the
# use cond
a
to update itself and install packages not in the
# anaconda3 image
RUN conda update -y conda &&\
conda install -y sphinx_rtd_theme && \
conda install -y pytest-cov && \
conda clean -y --all
# use pip to install openmdao (nocache to save space)
RUN pip install --no-cache-dir openmdao
# update pip then install openmdao (nocache to save space)
RUN pip install --upgrade pip &&\
pip install --no-cache-dir openmdao
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