mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | Pending | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---|---|---|---| | [node](https://nodejs.org) ([source](https://togithub.com/nodejs/node)) | | minor | `20.15.1` -> `20.16.0` | | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [node](https://togithub.com/nodejs/node) | final | minor | `20.15.0-alpine` -> `20.16.0-alpine` | | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [node](https://togithub.com/nodejs/node) | stage | minor | `20.15.0-alpine` -> `20.16.0-alpine` | | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`20.14.10` -> `20.14.13`](https://renovatebot.com/diffs/npm/@types%2fnode/20.14.10/20.14.13) | `20.14.14` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v20.16.0`](https://togithub.com/nodejs/node/compare/v20.15.1...v20.16.0) [Compare Source](https://togithub.com/nodejs/node/compare/v20.15.1...v20.16.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			757 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			757 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| ARG NODE_VERSION=20.16.0-alpine
 | |
| 
 | |
| FROM node:$NODE_VERSION as builder
 | |
| 
 | |
| WORKDIR /unleash
 | |
| 
 | |
| COPY . /unleash
 | |
| 
 | |
| RUN corepack enable
 | |
| 
 | |
| RUN yarn install --immutable  && yarn prepare:backend && yarn local:package
 | |
| 
 | |
| # frontend/build should already exist (it needs to be built in the local filesystem but in case of a fresh build we'll build it here)
 | |
| RUN yarn build:frontend:if-needed
 | |
| 
 | |
| RUN mkdir -p /unleash/build/frontend && mv /unleash/frontend/build /unleash/build/frontend/build
 | |
| 
 | |
| WORKDIR /unleash/docker
 | |
| 
 | |
| RUN yarn workspaces focus -A --production
 | |
| 
 | |
| FROM node:$NODE_VERSION
 | |
| 
 | |
| ENV NODE_ENV production
 | |
| 
 | |
| ENV TZ UTC
 | |
| 
 | |
| 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"]
 |