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