Skip to content

Commit 03f3591

Browse files
author
Hauke Ingwersen
committed
Updated Dockerfile
1 parent 3cb35b4 commit 03f3591

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Dockerfile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,12 @@ RUN composer global require hirak/prestissimo
9898
RUN yarn config set strict-ssl false && \
9999
yarn global add cross-env
100100

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
106105

107106
# 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
110109
EXPOSE 8080

0 commit comments

Comments
 (0)