6 lines
99 B
Bash
6 lines
99 B
Bash
|
#!/bin/sh
|
||
|
git clone https://github.com/$1.git ./repo
|
||
|
cd ./repo
|
||
|
docker build . -t $2
|
||
|
docker push $2
|