Wondering if anyone has implemented Dagger with bitbucket pipeline, or if i can get assistance with correcting what i have so far. i am using the simple test example for the python sdk. what i found is that we cannot enable privilege container in bitbucket pipeline. does it mean we can't use docker with it
image: python:3.11-alpine
pipelines:
default:
- step:
services:
- docker
script:
- python -m pip install --upgrade pip
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- pip install dagger-io
- python pipeline.py
pipeline error
+ python pipeline.py lint
Error: failed to run container: docker: Error response from daemon: authorization denied by plugin pipelines: --privileged=true is not allowed.
See 'docker run --help'.
: exit status 125