You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			407 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			407 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Dockerfile for jamapi
 | |
| #
 | |
| 
 | |
| FROM alpine
 | |
| MAINTAINER kev <noreply@easypi.pro>
 | |
| 
 | |
| WORKDIR /app
 | |
| 
 | |
| RUN set -xe \
 | |
|     && apk add -U ca-certificates curl nodejs nodejs-npm tar \
 | |
|     && curl -sSL https://github.com/gavindinubilo/jam-api/archive/master.tar.gz | tar xz --strip 1 \
 | |
|     && npm install --production \
 | |
|     && apk del curl tar \
 | |
|     && rm -rf /tmp/npm* /var/cache/apk/*
 | |
| 
 | |
| EXPOSE 5000
 | |
| 
 | |
| CMD ["node", "index"]
 |