diff --git a/sunset/Dockerfile b/sunset/Dockerfile new file mode 100644 index 0000000..5b2541a --- /dev/null +++ b/sunset/Dockerfile @@ -0,0 +1,14 @@ +FROM mambaorg/micromamba:1.4.9 + +ARG MAMBA_DOCKERFILE_ACTIVATE=1 + +# Basic requirements +RUN micromamba install --yes --name base --channel conda-forge \ + git && \ + micromamba clean --all --yes + +# Clone SUNSET repository +RUN git clone -o origin --depth 1 https://earth.bsc.es/gitlab/es/sunset.git + +# Create mamba environment +RUN micromamba env create -f sunset/conda_installation/environment-sunset.yml diff --git a/sunset/Dockerfile-r-yaml b/sunset/Dockerfile-r-yaml new file mode 100644 index 0000000..80c5ca3 --- /dev/null +++ b/sunset/Dockerfile-r-yaml @@ -0,0 +1,7 @@ +FROM r-base:4.3.2 + +RUN install2.r --error \ + yaml + +CMD ["R"] +