-
I want to ask for some help in understanding how caching mechanism works. Here is my configuration:
{
"scripts": {
"build:docker": "turbo run build:docker --parallel"
}
}
{
"pipeline": {
"build:docker": {
"outputs": []
}
}
}
{
"scripts": {
"build:docker": "cd ../../../ && docker build . -f infrastructure/docker/Dockerfile -t my-app-api:latest"
}
}
monorepo/
package.json
infrastructure/
docker/
Dockerfile
apps/
my-app/
api/
package.json For some reasons I'm always getting Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found a reason for it. Renaming npm scripts from Respective issue created #660 |
Beta Was this translation helpful? Give feedback.
Found a reason for it.
Turbo is not creating log files if npm script contains
:
.Renaming npm scripts from
build:docker
tobuild-docker
solved an issue.Respective issue created #660