14 lines
188 B
Makefile
14 lines
188 B
Makefile
REPO := repo.shimun.net/shimun/wireguard-user
|
|
|
|
build:
|
|
docker build . -t ${REPO}
|
|
|
|
.ONESHELL:
|
|
update:
|
|
cd boringtun
|
|
git checkout master
|
|
git pull
|
|
|
|
push: build
|
|
docker push ${REPO}
|