Use cache when default.yml update (#3042)
* Use cache when default.yml update * Install latest npm in base image
This commit is contained in:
		
							parent
							
								
									3720a7fbe0
								
							
						
					
					
						commit
						eee57c47f5
					
				
					 1 changed files with 13 additions and 8 deletions
				
			
		
							
								
								
									
										21
									
								
								Dockerfile
									
										
									
									
									
								
							
							
						
						
									
										21
									
								
								Dockerfile
									
										
									
									
									
								
							|  | @ -3,8 +3,9 @@ FROM alpine:3.8 AS base | ||||||
| ENV NODE_ENV=production | ENV NODE_ENV=production | ||||||
| 
 | 
 | ||||||
| RUN apk add --no-cache nodejs nodejs-npm zlib | RUN apk add --no-cache nodejs nodejs-npm zlib | ||||||
|  | RUN npm i -g npm@latest | ||||||
|  | 
 | ||||||
| WORKDIR /misskey | WORKDIR /misskey | ||||||
| COPY . ./ |  | ||||||
| 
 | 
 | ||||||
| FROM base AS builder | FROM base AS builder | ||||||
| 
 | 
 | ||||||
|  | @ -21,19 +22,23 @@ RUN apk add --no-cache \ | ||||||
|     pkgconfig \ |     pkgconfig \ | ||||||
|     libtool \ |     libtool \ | ||||||
|     zlib-dev |     zlib-dev | ||||||
| RUN npm i -g npm@latest \ | RUN npm i -g node-gyp | ||||||
|  && npm i \ | 
 | ||||||
|  && npm i -g node-gyp \ | COPY ./package.json ./ | ||||||
|  && node-gyp configure \ | RUN npm i | ||||||
|  | 
 | ||||||
|  | COPY . ./ | ||||||
|  | RUN node-gyp configure \ | ||||||
|  && node-gyp build \ |  && node-gyp build \ | ||||||
|  && npm run build |  && npm run build | ||||||
| 
 | 
 | ||||||
| FROM base AS runner | FROM base AS runner | ||||||
| 
 | 
 | ||||||
| COPY --from=builder /misskey/built ./built |  | ||||||
| COPY --from=builder /misskey/node_modules ./node_modules |  | ||||||
| 
 |  | ||||||
| RUN apk add --no-cache tini | RUN apk add --no-cache tini | ||||||
| ENTRYPOINT ["/sbin/tini", "--"] | ENTRYPOINT ["/sbin/tini", "--"] | ||||||
| 
 | 
 | ||||||
|  | COPY --from=builder /misskey/node_modules ./node_modules | ||||||
|  | COPY --from=builder /misskey/built ./built | ||||||
|  | COPY . ./ | ||||||
|  | 
 | ||||||
| CMD ["npm", "start"] | CMD ["npm", "start"] | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue