mirror of
				https://github.com/cinnyapp/cinny.git
				synced 2025-11-04 14:30:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			383 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			383 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
## Builder
 | 
						|
FROM node:14-alpine as builder
 | 
						|
 | 
						|
WORKDIR /src
 | 
						|
 | 
						|
COPY . /src
 | 
						|
RUN npm install \
 | 
						|
  && npm run build
 | 
						|
 | 
						|
 | 
						|
## App
 | 
						|
FROM nginx:alpine
 | 
						|
 | 
						|
COPY --from=builder /src/dist /app
 | 
						|
 | 
						|
# Insert wasm type into Nginx mime.types file so they load correctly.
 | 
						|
RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types
 | 
						|
 | 
						|
RUN rm -rf /usr/share/nginx/html \
 | 
						|
  && ln -s /app /usr/share/nginx/html
 |