mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2025-10-31 04:32:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			250 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			250 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM nginxinc/nginx-unprivileged:alpine
 | |
| 
 | |
| COPY --chown=101:101 ./dist-ci/ /usr/share/nginx/html/
 | |
| COPY --chown=101:101 docker/nginx.conf /etc/nginx/conf.d/default.conf
 | |
| COPY docker/entrypoint.sh /entrypoint.sh
 | |
| 
 | |
| EXPOSE 80
 | |
| ENTRYPOINT [ "/entrypoint.sh" ]
 | 
