mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 09:25:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			276 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			276 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM cypress/included:13.15.1
 | 
						|
 | 
						|
COPY --chown=1000 ./test /test
 | 
						|
 | 
						|
# Disable Cypress CLI colors by default
 | 
						|
ARG FORCE_COLOR=0
 | 
						|
ARG NO_COLOR=1
 | 
						|
ENV FORCE_COLOR=$FORCE_COLOR \
 | 
						|
	NO_COLOR=$NO_COLOR
 | 
						|
 | 
						|
WORKDIR /test
 | 
						|
RUN yarn install && yarn cache clean
 | 
						|
ENTRYPOINT []
 | 
						|
CMD ["cypress", "run"]
 |