-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Taken out an error in the pre-written fortran module which confused c…
…ompiler in Docker. Also removed the requirement for static compilation that was causing problems in Docker
- Loading branch information
1 parent
53c48af
commit fad9aa1
Showing
6 changed files
with
4 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# ================================================================================ | ||
# | ||
# This Dockerfile sets up a container based on the Ubuntu 16:04 image to run PyBox | ||
# This Dockerfile sets up a container based on the Ubuntu 18:04 image to run PyBox | ||
# | ||
FROM ubuntu:16.04 | ||
FROM ubuntu:18.04 | ||
MAINTAINER David Topping ([email protected]) | ||
|
||
# ========================== Basic configuration ================================= | ||
|
@@ -27,9 +27,7 @@ RUN apt-get install -y build-essential \ | |
# Install BLAS and LAPACK | ||
RUN apt-get install -y \ | ||
libblas-dev \ | ||
liblapack-dev \ | ||
libblas-doc \ | ||
liblapack-doc | ||
liblapack-dev | ||
|
||
# ========================== Create directory structure ========================== | ||
RUN mkdir -p /Code | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters