We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56f1a68 commit 7bfecbfCopy full SHA for 7bfecbf
3 files changed
Dockerfile
@@ -1,6 +1,6 @@
1
FROM golang:alpine AS builder
2
RUN apk add git
3
-RUN GO111MODULE=on go get -v github.com/miko/dmt@v0.1.6
+RUN GO111MODULE=on go get -v github.com/miko/dmt@v0.1.7
4
5
FROM alpine
6
ENTRYPOINT /bin/dmt
build.sh
@@ -1,4 +1,4 @@
-TAG=${TAG:-v0.1.6}
+TAG=${TAG:-v0.1.7}
docker build -t miko/dmt .
docker tag miko/dmt miko/dmt:${TAG}
cmd/root.go
@@ -22,7 +22,7 @@ var (
22
rootCmd = &cobra.Command{
23
Use: "dmt",
24
Short: "DGraph migration tool",
25
- Long: `DGraph migration tool v0.1.6.`,
+ Long: `DGraph migration tool v0.1.7.`,
26
}
27
)
28
0 commit comments