Switch go build target to 1.19 (#603)

* Switch go build target to 1.19

* Add make docker-run target for testing new images

* Bump appveyor go version

* Fix appveyor paths
This commit is contained in:
Dan Sosedoff
2022-12-06 18:34:08 -06:00
committed by GitHub
parent 2c745fa68d
commit bbe9a97d05
6 changed files with 12 additions and 9 deletions

View File

@@ -60,6 +60,9 @@ clean:
docker:
docker build --no-cache -t pgweb .
docker-run:
docker run --rm -p 8081:8081 -it pgweb
docker-release:
docker build --no-cache -t $(DOCKER_RELEASE_TAG) .
docker tag $(DOCKER_RELEASE_TAG) $(DOCKER_LATEST_TAG)