From c02e4a48dae3c985d9bb5519ef62754c4d168fe2 Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 8 Sep 2020 19:45:11 -0700 Subject: [PATCH] rebuild image so i can see where source lives --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a2cce9..d8125b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM golang:1.15 as builder RUN mkdir /build ADD . /build/ WORKDIR /build -RUN make build && find . +RUN find / +RUN make build FROM scratch COPY --from=builder /build/sco /app/main