Hi,
I have a public docker image that when being used on my computer I do the following:
docker run --rm -it espressif/idf:v4.4.7
Note the -it flag. If I run this docker command I can access the container and do things there, Mainly idf.py clean.
I want to do this from a pipeline:
image: espressif/idf:v4.4.7
pipelines:
default:
- step:
name: 'Compile all platforms'
script:
- ls
- idf.py clean
The last line fails because it doesn't find idf.py. I supose that is because bitbucket is not executing the image as -it. Is there a way to do so?
bash: idf.py: command not found