mirror of
				https://github.com/Mibew/simple-icons.git
				synced 2025-10-31 02:25:59 +03:00 
			
		
		
		
	* Update all dependencies * Update Dockerfile --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			206 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			206 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:20-alpine
 | |
| 
 | |
| RUN apk add --no-cache \
 | |
|   git
 | |
| 
 | |
| WORKDIR /simple-icons
 | |
| COPY package.json /simple-icons/
 | |
| RUN npm install --ignore-scripts
 | |
| 
 | |
| COPY . .
 | |
| 
 | |
| ENTRYPOINT ["npm", "run", "svgo", "--", "/image.svg"]
 |