33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:12
 | |
| 
 | |
| LABEL maintainer="Fabian Stamm <dev@fabianstamm.de>"
 | |
| 
 | |
| # RUN apt-get update
 | |
| 
 | |
| # # for https
 | |
| # RUN apt-get install -yyq ca-certificates
 | |
| # # install libraries
 | |
| # RUN apt-get install -yyq libappindicator1 libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6
 | |
| # # tools
 | |
| # RUN apt-get install -yyq gconf-service lsb-release wget xdg-utils
 | |
| # # and fonts
 | |
| # RUN apt-get install -yyq fonts-liberation
 | |
| 
 | |
| RUN mkdir -p /usr/src/app
 | |
| WORKDIR /usr/src/app
 | |
| 
 | |
| COPY ["package.json", "package-lock.json", "tsconfig.json", "/usr/src/app/"]
 | |
| 
 | |
| ENV NODE_ENV=production
 | |
| 
 | |
| RUN npm install
 | |
| 
 | |
| COPY lib/ /usr/src/app/lib
 | |
| COPY views/out /usr/src/app/views/out/
 | |
| COPY views_repo/build /usr/src/app/views_repo/build
 | |
| 
 | |
| VOLUME [ "/usr/src/app/logs", "/usr/src/app/keys"]
 | |
| 
 | |
| EXPOSE 3004/tcp
 | |
| 
 | |
| CMD ["npm", "run", "start"] | 
