All checks were successful
Build / build (pull_request) Successful in 31s
- a basic image that enables running development builds
9 lines
111 B
Bash
9 lines
111 B
Bash
#!/usr/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir /app
|
|
git clone --branch ${BRANCH} ${REPOSITORY} /app/repo
|
|
cd /app/repo
|
|
make run
|