From 197df33556e4ad3798fbeab87e09a8844e9a05d7 Mon Sep 17 00:00:00 2001 From: lzy <674194901@qq.com> Date: Thu, 26 Sep 2024 11:40:23 +0800 Subject: [PATCH] chore: delete dockerfile --- build/Dockerfile.cli | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 build/Dockerfile.cli diff --git a/build/Dockerfile.cli b/build/Dockerfile.cli deleted file mode 100644 index 1df06db95..000000000 --- a/build/Dockerfile.cli +++ /dev/null @@ -1,19 +0,0 @@ -# Build the manager binary -FROM golang:1.22 as builder - -ARG GOPROXY=https://goproxy.io,direct -ARG GOSUMDB=sum.golang.org - -WORKDIR /workspace -# copy everything -COPY . . -RUN make cli-dep-install cli-build - -# start build docker image -FROM openanolis/anolisos:8.8 -WORKDIR / -COPY --from=builder /workspace/bin/obocli . -RUN yum update -y && yum clean all -RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime - -ENTRYPOINT ["/obocli"] \ No newline at end of file