From e48fbcb6e6434f4932dd1a88aa106e4f6d1c9879 Mon Sep 17 00:00:00 2001 From: Evan Chen Date: Mon, 25 Oct 2021 12:40:40 +0800 Subject: [PATCH] build: fix build order --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4fc8484..30abcd9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,5 @@ FROM golang:1.17.2 -RUN curl -fsSL https://kumoly.io/attachments/a8b503db-8067-4323-9d1d-bc6e616af452 | tar -C /usr/local/bin/ -xz - WORKDIR /src RUN touch shell.sh @@ -19,5 +17,6 @@ func main() {\n\ }\n' > main.go +RUN curl -fsSL https://kumoly.io/attachments/a8b503db-8067-4323-9d1d-bc6e616af452 | tar -C /usr/local/bin/ -xz CMD [ "configui", "-log", "configui.log", "-f","conf.json" ] \ No newline at end of file