| 
									
										
										
										
											2018-01-31 19:23:52 +01:00
										 |  |  | FROM hosttoday/ht-docker-node:stable | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # See https://crbug.com/795759 | 
					
						
							|  |  |  | RUN apt-get update && apt-get install -yq libgconf-2-4 \ | 
					
						
							|  |  |  |   && apt-get clean \ | 
					
						
							|  |  |  |   && rm -r /var/lib/apt/lists/* | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Install latest chrome dev package. | 
					
						
							|  |  |  | # Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer | 
					
						
							|  |  |  | # installs, work. | 
					
						
							|  |  |  | RUN apt-get update && apt-get install -y wget --no-install-recommends \ | 
					
						
							|  |  |  |     && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ | 
					
						
							|  |  |  |     && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ | 
					
						
							|  |  |  |     && apt-get update \ | 
					
						
							|  |  |  |     && apt-get install -y google-chrome-unstable \ | 
					
						
							|  |  |  |       --no-install-recommends \ | 
					
						
							|  |  |  |     && rm -rf /var/lib/apt/lists/* \ | 
					
						
							| 
									
										
										
										
											2018-05-16 01:00:21 +02:00
										 |  |  |     && rm -rf /src/*.deb | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Add user so we don't need --no-sandbox. | 
					
						
							|  |  |  | RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \ | 
					
						
							|  |  |  |     && mkdir -p /home/pptruser/Downloads \ | 
					
						
							| 
									
										
										
										
											2018-05-16 01:08:52 +02:00
										 |  |  |     && chown -R pptruser:pptruser /home/pptruser | 
					
						
							| 
									
										
										
										
											2018-05-16 01:00:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Run everything after as non-privileged user. | 
					
						
							|  |  |  | USER pptruser |