9 lines
288 B
Makefile
9 lines
288 B
Makefile
pack:
|
|
sudo docker build -t myoauth . --no-cache
|
|
|
|
publish-latest:
|
|
sudo docker tag myoauth arielherself/myoauth:latest && sudo docker push arielherself/myoauth:latest
|
|
|
|
publish-nightly:
|
|
sudo docker tag myoauth arielherself/myoauth:nightly && sudo docker push arielherself/myoauth:nightly
|