| # To build use: docker build -t xosproject/xos-gui . |
| # To run use: docker run -p 4000:4000 --volumes-from gui-extensions-store -d xosproject/xos-gui |
| RUN apt-get install curl git bzip2 -y |
| RUN curl -sL https://deb.nodesource.com/setup_4.x > install_node.sh |
| RUN chmod a+x install_node.sh |
| RUN apt-get install -y nodejs |
| COPY ${CODE_SOURCE}/package.json ${CODE_DEST}/package.json |
| COPY ${CODE_SOURCE}/typings.json ${CODE_DEST}/typings.json |
| RUN mkdir -p /var/log/nginx/log |
| COPY ${CODE_SOURCE}/conf ${CODE_DEST}/conf |
| COPY ${CODE_SOURCE}/gulp_tasks ${CODE_DEST}/gulp_tasks |
| COPY ${CODE_SOURCE}/src ${CODE_DEST}/src |
| COPY ${CODE_SOURCE}/gulpfile.js ${CODE_DEST}/gulpfile.js |
| COPY ${CODE_SOURCE}/tsconfig.json ${CODE_DEST}/tsconfig.json |
| COPY ${CODE_SOURCE}/tslint.json ${CODE_DEST}/tslint.json |
| # Override nginx configutaion |
| COPY ${CODE_SOURCE}/nginx.conf ${CODE_DEST}/nginx.conf |
| RUN mv ${CODE_SOURCE}/nginx.conf /etc/nginx/conf.d/default.conf |