fix: disable npm cache to avoid Docker buildx deadlock
This commit is contained in:
parent
f4d8388e10
commit
996e900df8
|
|
@ -1,9 +1,11 @@
|
||||||
# Simple build configuration
|
# Disable cache to avoid Docker buildx cache issues
|
||||||
[phases.install]
|
[phases.install]
|
||||||
cmds = ['npm install']
|
cmds = ['npm install']
|
||||||
|
cacheDirectories = []
|
||||||
|
|
||||||
[phases.build]
|
[phases.build]
|
||||||
cmds = ['npm run build']
|
cmds = ['npm run build']
|
||||||
|
cacheDirectories = []
|
||||||
|
|
||||||
[start]
|
[start]
|
||||||
cmd = 'npm start'
|
cmd = 'npm start'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue