From d3a801ac6cb06327cd5ade9fb8cf0b1806e717f1 Mon Sep 17 00:00:00 2001 From: Matt Burchett Date: Thu, 4 Feb 2021 01:40:03 -0600 Subject: [PATCH] Moving Dockerfile, multistage build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 094a019..3813bc5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM golang:alpine AS build WORKDIR /root/ -COPY * /root/ +COPY . /root/ RUN go build -o /root/matrix-handler cmd/svr/main.go FROM scratch