Skip to content

Commit 272b4c2

Browse files
committed
fix file permissions of run scripts
1 parent 61c15a1 commit 272b4c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ RUN yarn config set strict-ssl false && \
9292

9393
# copy home folder and make run scripts executable
9494
COPY ./home/app/ /home/app/
95-
RUN find . -name "run-*.sh" -exec chmod -v +x {} \;
95+
RUN find /home/app -name "run-*.sh" -exec chmod -v +x {} \;
9696

9797
# run the application
9898
CMD /home/app/run-dev.sh

0 commit comments

Comments
 (0)