23 lines
		
	
	
		
			309 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			309 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM docker:19.03.1
 | |
| 
 | |
| RUN apk update && apk add --no-cache \
 | |
|   git \
 | |
|   openssl \
 | |
|   ca-certificates \
 | |
|   bash \
 | |
|   curl \
 | |
|   make \
 | |
|   gcc \
 | |
|   g++ \
 | |
|   python \
 | |
|   linux-headers \
 | |
|   paxctl \
 | |
|   libgcc \
 | |
|   libstdc++ \
 | |
|   gnupg \
 | |
|   nodejs \
 | |
|   nodejs-npm \
 | |
|   && update-ca-certificates
 | |
| 
 | |
| RUN npm config set unsafe-perm true
 |