File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -98,13 +98,12 @@ RUN composer global require hirak/prestissimo
98
98
RUN yarn config set strict-ssl false && \
99
99
yarn global add cross-env
100
100
101
- # copy home folder and make run scripts executable
102
- COPY ./home/app/ /home/app/
103
- COPY ./root/.bashrc /root/
104
- RUN find /home/app -name "run-*.sh" -exec chmod -v +x {} \;
105
- RUN chmod +x /home/app/entrypoint.sh
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
106
105
107
106
# run the application
108
- ENTRYPOINT ["/home/app /entrypoint.sh" ]
109
- CMD /home/app /run-prod.sh
107
+ ENTRYPOINT ["/root /entrypoint.sh" ]
108
+ CMD /root /run-prod.sh
110
109
EXPOSE 8080
You can’t perform that action at this time.
0 commit comments