From 75c8b1b0d29a581567282f12a4e626dea059bf2d Mon Sep 17 00:00:00 2001 From: s444417 Date: Wed, 6 Apr 2022 17:53:42 +0200 Subject: [PATCH] docker fix --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3595da5..3d16fa8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,9 +20,9 @@ COPY ./startscript1.sh ./ COPY ./src/task1python.py ./src/task1python.py COPY ./src/pythonTest.py ./src/pythonTest.py -RUN "chmod a+x ./startscript1.sh" -RUN "chmod a+x ./src/task1python.py" -RUN "chmod a+x ./src/pythonTest.py" +RUN chmod a+x ./startscript1.sh +RUN chmod a+x ./src/task1python.py +RUN chmod a+x ./src/pythonTest.py