I am trying to create a pipe image and upload it to AWS ECR to use.
```
#Dockerfile
FROM atlassian/pipelines-awscli<br>RUN apk add --update docker openrc
RUN rc-update add docker boot
```
The calling method is as follows.
```
script:
- pipe: docker://$ECR_REPOSITORY/$MY_PIPE_IMAGE:latest
```
I tried to build docker inside the script created with the pipe image, but it is confirmed that the docker deamon cannot be found.
Is there any way?