mirror of
https://github.com/stashapp/stash.git
synced 2025-12-08 01:13:09 +01:00
* Update to Go 1.22 Updates to Go 1.22 because 1.19 is un-supported and has some CVEs. Also updates a small number of low-risk deps * Explicitly install Go in CI * Bump compiler version * Add build tags to it target --------- 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=9
|
|
|
|
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
|