diff --git a/.drone.yml b/.drone.yml index 15ba85b..d19194a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,10 +5,18 @@ name: ci steps: - name: build image: debian:12 + volumes: + - name: dockersocket + path: /var/run/docker.sock commands: - TAG=$${DRONE_TAG:-$DRONE_BRANCH} # set tag to tag name (if applicable) or branch name - apt-get update && apt-get install -y curl # install dependencies from apt - curl -fsSL https://get.docker.com -o get-docker.sh # install docker - sh ./get-docker.sh - sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d # install task - - ./bin/task build # build the docker image \ No newline at end of file + - ./bin/task build # build the docker image + +volumes: +- name: dockersocket + host: + path: /var/run/docker.sock \ No newline at end of file