diff --git a/Dockerfile b/Dockerfile index d684fde..e95d0d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ADD . /app WORKDIR /app RUN GO111MODULE=on packr2 RUN go test -RUN go build kis3.dev/kis3 +RUN go build github.com/kis3/kis3 FROM alpine:3.9 RUN apk add --no-cache tzdata ca-certificates && update-ca-certificates diff --git a/go.mod b/go.mod index 4e4a8a4..22ded9c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module kis3.dev/kis3 +module github.com/kis3/kis3 go 1.12 diff --git a/main.go b/main.go index cfa81c0..cc39882 100644 --- a/main.go +++ b/main.go @@ -6,8 +6,8 @@ import ( "github.com/gobuffalo/packr/v2" "github.com/gorilla/handlers" "github.com/gorilla/mux" + "github.com/kis3/kis3/helpers" "html/template" - "kis3.dev/kis3/helpers" "log" "net/http" "strconv"