stash/docker/compiler/Makefile
kermieisinthehouse 0e514183a7
Desktop integration (#2073)
* Open stash in system tray on Windows/MacOS
* Add desktop notifications
* MacOS Bundling
* Add binary icon

Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
2022-02-03 11:20:34 +11:00

16 lines
361 B
Makefile

user=stashapp
repo=compiler
version=6
latest:
docker build -t ${user}/${repo}:latest .
build:
docker build -t ${user}/${repo}:${version} -t ${user}/${repo}:latest .
build-no-cache:
docker build --no-cache -t ${user}/${repo}:${version} -t ${user}/${repo}:latest .
install: build
docker push ${user}/${repo}:${version}
docker push ${user}/${repo}:latest