mirror of
				https://github.com/cinnyapp/cinny.git
				synced 2025-11-04 06:20:28 +03:00 
			
		
		
		
	Bumps nginx from 1.27.0-alpine to 1.27.4-alpine. --- updated-dependencies: - dependency-name: nginx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			418 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			418 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
## Builder
 | 
						|
FROM node:20.12.2-alpine3.18 as builder
 | 
						|
 | 
						|
WORKDIR /src
 | 
						|
 | 
						|
COPY .npmrc package.json package-lock.json /src/
 | 
						|
RUN npm ci
 | 
						|
COPY . /src/
 | 
						|
ENV NODE_OPTIONS=--max_old_space_size=4096
 | 
						|
RUN npm run build
 | 
						|
 | 
						|
 | 
						|
## App
 | 
						|
FROM nginx:1.27.4-alpine
 | 
						|
 | 
						|
COPY --from=builder /src/dist /app
 | 
						|
COPY --from=builder /src/docker-nginx.conf /etc/nginx/conf.d/default.conf
 | 
						|
 | 
						|
RUN rm -rf /usr/share/nginx/html \
 | 
						|
  && ln -s /app /usr/share/nginx/html
 |