forked from cyclus/cyclus.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
35 additions
and
1 deletion.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
``fuelcycle.org-deps`` contains a dockerfile with all dependencies for | ||
building cymetric. This is used by the docker based build targets added to | ||
the makefile. This image will need to be updated and repushed to docker hub | ||
periodically when dependencies for the website need updating. Particularly, | ||
this image will need to be rebuilt whenever there is a new release of | ||
cyclus+cycamore. | ||
|
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
FROM cyclus/cycamore | ||
|
||
RUN apt-get install -y --force-yes python3-pip | ||
RUN pip3 install sphinx sphinxcontrib-bibtex cloud-sptheme | ||
|
||
WORKDIR / | ||
RUN git clone https://github.com/cyclus/cymetric | ||
WORKDIR /cymetric | ||
RUN python setup.py install | ||
WORKDIR / | ||
|