8 lines
264 B
Bash
8 lines
264 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
dagger_tag=$(openssl rand -hex 12)
|
||
|
docker build -t dagger-test-builder:${dagger_tag} .
|
||
|
docker run -v /var/run/docker.sock:/var/run/docker.sock dagger-test-builder:${dagger_tag} ./dagger 'https://github.com/kpenfound/greetings-api.git'
|