For tools like renovate or dependabot, they like to put changelog notes in PRs updating deps. Having the labels allows the tools to link it back to sourcecode and share commits/release notes
		
			
				
	
	
		
			20 lines
		
	
	
		
			498 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			498 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Builder
 | 
						|
FROM node:lts as builder
 | 
						|
LABEL org.opencontainers.image.url=https://github.com/Awesome-Technologies/synapse-admin org.opencontainers.image.source=https://github.com/Awesome-Technologies/synapse-admin
 | 
						|
ARG REACT_APP_SERVER
 | 
						|
 | 
						|
WORKDIR /src
 | 
						|
 | 
						|
COPY . /src
 | 
						|
RUN yarn --network-timeout=300000 install --immutable
 | 
						|
RUN REACT_APP_SERVER=$REACT_APP_SERVER yarn build
 | 
						|
 | 
						|
 | 
						|
# App
 | 
						|
FROM nginx:alpine
 | 
						|
 | 
						|
COPY --from=builder /src/build /app
 | 
						|
 | 
						|
RUN rm -rf /usr/share/nginx/html \
 | 
						|
 && ln -s /app /usr/share/nginx/html
 |