Skip to content
This repository has been archived by the owner on May 30, 2018. It is now read-only.

Commit

Permalink
build(openshift): fix exec permission trouble
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Salas Bastidas committed Dec 22, 2016
1 parent f016816 commit 05ad49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ VOLUME ["/etc/nginx/sites-enabled", "/etc/nginx/certs", "/etc/nginx/conf.d", "/v

### COPY DIST STUFF TO var/www/html
ADD . /sourcebuild
RUN cd /sourcebuild && ./build-dist.sh && rm -Rf /var/www/html && mv /sourcebuild/dist /var/www/html
RUN cd /sourcebuild && chmod +x ./build-dist.sh && ./build-dist.sh && rm -Rf /var/www/html && mv /sourcebuild/dist /var/www/html

This comment has been minimized.

Copy link
@ajsb85

ajsb85 Dec 22, 2016

Contributor

It's ok for you @farfou?


ADD tools /tools
RUN chmod +x /tools/*.sh && \
Expand Down

0 comments on commit 05ad49c

Please sign in to comment.