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