Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions sunset/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions sunset/Dockerfile-r-yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM r-base:4.3.2

RUN install2.r --error \
yaml

CMD ["R"]