We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4ce8d7 commit 63d0c39Copy full SHA for 63d0c39
Dockerfile
@@ -0,0 +1,5 @@
1
+FROM alpine:3.7
2
+
3
+COPY dist/linux_amd64/tunnel /usr/local/bin
4
5
+ENTRYPOINT ["tunnel"]
Makefile
@@ -1,8 +1,12 @@
+IMAGE = labstack/tunnel
VERSION = 0.2.8
publish:
git tag $(VERSION)
6
git push origin --tags
7
goreleaser --rm-dist
8
+ docker build -t $(IMAGE):$(VERSION) -t $(IMAGE) .
9
+ docker push $(IMAGE):$(VERSION)
10
+ docker push $(IMAGE):latest
11
12
.PHONY: publish
0 commit comments