mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	* Build docker test * Change platform to build on amd64 * Put back buildplatform * Run frontend as separate docker task * Increase timeout * Update docs
		
			
				
	
	
		
			42 lines
		
	
	
		
			757 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			757 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| ARG NODE_VERSION=16-alpine
 | |
| 
 | |
| FROM --platform=$BUILDPLATFORM node:$NODE_VERSION as frontend_builder
 | |
| 
 | |
| WORKDIR /frontend
 | |
| 
 | |
| COPY ./frontend /frontend
 | |
| 
 | |
| RUN yarn install --frozen-lockfile
 | |
| 
 | |
| FROM node:$NODE_VERSION as builder
 | |
| 
 | |
| WORKDIR /unleash
 | |
| 
 | |
| COPY . /unleash
 | |
| 
 | |
| RUN yarn config set network-timeout 300000
 | |
| 
 | |
| RUN yarn install --frozen-lockfile --ignore-scripts  && yarn run build && yarn run local:package
 | |
| 
 | |
| COPY --from=frontend_builder /frontend/build /unleash/build/frontend/build
 | |
| 
 | |
| WORKDIR /unleash/docker
 | |
| 
 | |
| RUN yarn install --frozen-lockfile --production=true
 | |
| 
 | |
| FROM node:$NODE_VERSION
 | |
| 
 | |
| ENV NODE_ENV production
 | |
| 
 | |
| WORKDIR /unleash
 | |
| 
 | |
| COPY --from=builder /unleash/docker /unleash
 | |
| 
 | |
| RUN rm -rf /usr/local/lib/node_modules/npm/
 | |
| 
 | |
| EXPOSE 4242
 | |
| 
 | |
| USER node
 | |
| 
 | |
| CMD ["node", "index.js"]
 |