Browse Source

fix module again

baz 5 years ago
parent
commit
de1dc86be1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -2,7 +2,7 @@ FROM golang:1.11-alpine as builder
 RUN apk --no-cache add git gcc musl-dev
 WORKDIR /go/src/git.lattuga.net/boyska/feedpanel/
 COPY ./ /go/src/git.lattuga.net/boyska/feedpanel/
-ENV GO111MODULES=on
+ENV GO111MODULE=on
 RUN go get ./... && CGO_ENABLED=0 GOOS=linux go install ./...
 
 FROM busybox