mirror of
https://github.com/stashapp/stash.git
synced 2025-12-08 01:13:09 +01:00
* 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>
16 lines
361 B
Makefile
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
|