From cb4f2cfebf7f795426d221e97b95ad6a431de94b Mon Sep 17 00:00:00 2001 From: iceBear67 Date: Sat, 22 Mar 2025 14:38:00 +0800 Subject: [PATCH] fix path --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5f0790f..bf4d471 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM golang:1.24 -RUN git clone https://github.com/iceBear67/bubble && cd bubble/ && bash ./build.sh +RUN git clone https://github.com/iceBear67/bubble /bubble && cd /bubble/ && bash ./build.sh FROM debian:11 -COPY --from=0 /bubble/src/target/client /bin/bubble +COPY --from=0 /bubble/target/client /bin/bubble RUN <