forked from EcoExtreML/STEMMUS_SCOPE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
17 lines (13 loc) · 734 Bytes
/
Dockerfile
File metadata and controls
17 lines (13 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM demartis/matlab-runtime:R2023a@sha256:9d6b3acd29b974ca0a0c77eca09a34488dcece290c8a4bd04dafaa7c4a5665b2
LABEL maintainer="Bart Schilperoort <[email protected]>"
LABEL org.opencontainers.image.source = "https://github.com/EcoExtreML/STEMMUS_SCOPE"
RUN wget https://github.com/EcoExtreML/STEMMUS_SCOPE/raw/main/run_model_on_snellius/exe/STEMMUS_SCOPE --no-check-certificate
# Make sure the file is executable
RUN chmod +x ./STEMMUS_SCOPE
# Allow MCR to have a cache directory which all users can access
RUN mkdir /temp/
RUN chmod 777 /temp/
ENV MCR_CACHE_ROOT /temp/
CMD ./STEMMUS_SCOPE "" bmi
# Build the image with: `docker build . -t stemmus_scope`
# Then start with the command `docker run -it stemmus_scope`