23 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine
 | |
| MAINTAINER Pinecrypt Labs <info@pinecrypt.com>
 | |
| RUN apk add --update npm nginx rsync bash
 | |
| RUN npm install --prefix /usr/local --silent --no-optional -g nunjucks@2.5.2 nunjucks-date@1.2.0 bootstrap@4.0.0-alpha.6 jquery timeago tether font-awesome qrcode-svg xterm rollup
 | |
| RUN test -e /usr/local/lib/node_modules/jquery/dist/jquery.min.js
 | |
| COPY nginx.conf /etc/nginx/nginx.conf
 | |
| EXPOSE 80 443 8443
 | |
| WORKDIR /var/lib/nginx/html/
 | |
| RUN npm init -y && npm i pkijs rollup-plugin-node-resolve
 | |
| RUN rsync -avq /usr/local/lib/node_modules/font-awesome/fonts/ fonts/
 | |
| COPY static ./
 | |
| COPY templates templates
 | |
| COPY rollup.config.js .
 | |
| RUN rollup -c
 | |
| RUN nunjucks-precompile --include snippets --include views templates >> js/bundle.js
 | |
| RUN bash -c 'cat /usr/local/lib/node_modules/{jquery/dist/jquery.min.js,tether/dist/js/tether.min.js,bootstrap/dist/js/bootstrap.min.js,qrcode-svg/dist/qrcode.min.js,timeago/jquery.timeago.js,nunjucks/browser/nunjucks-slim.min.js,xterm/lib/xterm.js} >> js/bundle.js'
 | |
| RUN bash -c 'cat /usr/local/lib/node_modules/{tether/dist/css/tether.min.css,bootstrap/dist/css/bootstrap.min.css,font-awesome/css/font-awesome.min.css,xterm/css/xterm.css} >> css/bundle.css'
 | |
| RUN mkdir /frontend-secrets
 | |
| RUN ln -s ../server-secrets/self_cert.pem /frontend-secrets/fullchain.pem
 | |
| RUN ln -s ../server-secrets/self_key.pem /frontend-secrets/privkey.pem
 | |
| COPY entrypoint.sh /entrypoint.sh
 | |
| ENTRYPOINT /entrypoint.sh
 |