From 2b719ccd3fa754e55c27f15cc6f81d7aabb1242f Mon Sep 17 00:00:00 2001 From: Richard Patel Date: Fri, 22 Feb 2019 04:57:30 +0100 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0898c52..114dfc0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.11.5 AS builder ADD . /src -RUN cd /src +RUN cd /src \ && go build -o binary FROM alpine