We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf93d4 commit a1ac4a2Copy full SHA for a1ac4a2
Dockerfile
@@ -100,13 +100,7 @@ RUN yarn config set strict-ssl false && \
100
101
# copy root folder and make run scripts executable
102
COPY ./root/ /root/
103
-RUN find /root -name "run-*.sh" -exec chmod -v +x {} \;
104
-RUN chmod +x /root/entrypoint.sh
105
-
106
-# copy startup modules folder and make scripts executalbe
107
108
-COPY ./modules/ /root/modules/
109
-RUN find /root/modules/ -name "*.sh" -exec chmod -v +x {} \;
+RUN find /root -name "*.sh" -exec chmod -v +x {} \;
110
111
# run the application
112
ENTRYPOINT ["/root/entrypoint.sh"]
modules/cache.sh renamed to root/modules/cache.sh
modules/dev.sh renamed to root/modules/dev.sh
modules/storage.sh renamed to root/modules/storage.sh
0 commit comments