-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #766 from cmu-delphi/release/v3.1.1
Release v3.1.1
- Loading branch information
Showing
7 changed files
with
19 additions
and
57 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
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 |
---|---|---|
@@ -1,13 +1,12 @@ | ||
# docker image for setting up an R environment | ||
FROM continuumio/miniconda | ||
|
||
RUN conda install --name base --channel conda-forge mamba=* | ||
FROM mambaorg/micromamba | ||
|
||
ADD ./environment.yml . | ||
RUN mamba env create -f environment.yml | ||
|
||
RUN micromamba env create -f environment.yml | ||
ARG MAMBA_DOCKERFILE_ACTIVATE=1 | ||
ADD ./dependencies.R . | ||
|
||
RUN conda run -n www-main Rscript ./dependencies.R | ||
RUN micromamba run -n www-main Rscript ./dependencies.R | ||
|
||
ENV PATH /opt/conda/envs/www-main/bin:$PATH | ||
ENV PATH /opt/conda/envs/www-main/bin:$PATH |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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