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 <