11 lines
		
	
	
		
			285 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			285 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM nginx:stable-alpine
 | 
						|
 | 
						|
COPY ./Frontend/ /usr/share/nginx/html/Frontend/
 | 
						|
COPY ./index.html /usr/share/nginx/html
 | 
						|
COPY ./logo.png /usr/share/nginx/html
 | 
						|
COPY ./styles.css /usr/share/nginx/html
 | 
						|
COPY ./common.css /usr/share/nginx/html
 | 
						|
COPY ./favicon.ico /usr/share/nginx/html
 | 
						|
 | 
						|
EXPOSE 80
 |