-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the Dockerfile and documentation (#312)
* Updated the documentation for building the Docker image and updated the Dockerfile to use Python 3 * Updated the Dockerfile format
- Loading branch information
Showing
2 changed files
with
7 additions
and
4 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,6 +1,9 @@ | ||
FROM ubuntu | ||
LABEL maintainer="Francesco Di Natale dinatale3@llnl.gov" | ||
|
||
RUN apt-get update && apt-get install -y python python-pip git | ||
RUN apt-get update && apt-get install -y \ | ||
python3 \ | ||
python3-pip \ | ||
git | ||
ADD . /maestrowf | ||
RUN pip install -U /maestrowf | ||
RUN python3 -m pip install -U /maestrowf |
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