From 7ba3c5c9aa9d35e9c5ed0cd364103ae00296f985 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Fri, 6 Jul 2018 16:44:21 +0300 Subject: [PATCH] Fix building in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5af87bb..17d4fd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /go/src/maubot.xyz/ RUN dep ensure -vendor-only COPY . /go/src/maubot.xyz/ -RUN CGO_ENABLED=0 go build -o /usr/bin/maubot +RUN CGO_ENABLED=0 go build -o /usr/bin/maubot maubot.xyz/cmd/maubot FROM scratch