From d68db80d498fea61965467a9ee17ffe6b9e66669 Mon Sep 17 00:00:00 2001 From: Jackie Elliott Date: Fri, 8 Jun 2018 17:11:24 -0700 Subject: [PATCH] Removed gopath from COPY because it was undefined after second FROM --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c176ce0..4558842 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apk add --no-cache ca-certificates WORKDIR /bin/ COPY --from=builder /bin/app . -COPY --from=builder /templates . +COPY --from=builder /go/src/github.com/Azure/spec-sla-bot/templates templates/ # Comment out to run the binary in "production" mode: # ENV GO_ENV=production