-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
09fe25e
commit 566f04a
Showing
3 changed files
with
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM continuumio/miniconda3 | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
gcc | ||
|
||
RUN git clone https://github.com/alvinzhou66/classification-of-scientific-software | ||
|
||
RUN conda install -c conda-forge yarn | ||
|
||
RUN cd classification-of-scientific-software && yarn install | ||
|
||
RUN pip install --upgrade pip | ||
|
||
COPY requirements.txt /opt/app/requirements.txt | ||
|
||
RUN pip install -r /opt/app/requirements.txt | ||
|
||
WORKDIR classification-of-scientific-software |
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