Skip to content

Commit 1117ad6

Browse files
committed
删除环境变量 NODE_COMPILE_CACHE
1 parent 18ea3f6 commit 1117ad6

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

src/select-node-version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ const fetchNodes = async () => {
4444
})
4545
.filter((item) => {
4646
if (!item.lts) return false;
47-
if (item.versions[0] === 20 && item.versions[1] >= 13) return true;
48-
if (item.versions[0] >= 22) return true;
47+
if (item.versions[0] === 22 && item.versions[1] >= 8) return true;
48+
if (item.versions[0] >= 24) return true;
4949
return false;
5050
});
5151
};

templates/docker-compose-integration.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,3 @@ services:
1010
image: {{projectName}}:integration
1111
command: aomex cron:start
1212
restart: always
13-
environment:
14-
- NODE_COMPILE_CACHE=/tmp

templates/docker-compose-production.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,3 @@ services:
1414
image: {{projectName}}:production
1515
command: aomex cron:start
1616
restart: always
17-
environment:
18-
- NODE_COMPILE_CACHE=/tmp

0 commit comments

Comments
 (0)