-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (14 loc) · 794 Bytes
/
Dockerfile
File metadata and controls
18 lines (14 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM demartis/matlab-runtime:R2023a@sha256:9d6b3acd29b974ca0a0c77eca09a34488dcece290c8a4bd04dafaa7c4a5665b2
LABEL maintainer="Bart Schilperoort <b.schilperoort@esciencecenter.nl>"
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
COPY run_model_on_snellius/exe/STEMMUS_SCOPE ./STEMMUS_SCOPE
# 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`