stash/docker/compiler/Makefile
its-josh4 ff23d4e20b
Update to Go 1.22 (#4822)
* 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>
2024-06-11 10:55:02 +10:00

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