18 lines
228 B
Bash
Executable File
18 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "prebuiliding docker image"
|
|
|
|
cuddle_cli x build_release
|
|
|
|
echo "running docker image"
|
|
|
|
tag="$REGISTRY/$NAME:$COMMIT_SHA"
|
|
|
|
container_id=$(docker run --rm -d "$tag")
|
|
|
|
sleep 5s
|
|
|
|
docker stop "$container_id"
|