From 6aad9956ce0b3386d217a0eaeebf6131939bf127 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Fri, 29 Dec 2017 20:21:30 -0500 Subject: [PATCH] make sure scripts are executable --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d4c9b2b9..843eda1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,8 @@ RUN apt update RUN apt -y install sudo zsh RUN apt -y dist-upgrade RUN mkdir -p build-sol2/Debug build-sol2/Release +RUN chmod +x /sol2/scripts/preparation.linux.sh +RUN chmod +x /sol2/scripts/run.linux.sh RUN ["/usr/bin/env", "zsh", "-c", "./sol2/scripts/preparation.linux.sh"] # CMD/ENTRYPOINT is different from RUN # these are done on a per-instantiation and essentially describe