From 05d450d445b229d83da03c53731e1853a5f0b625 Mon Sep 17 00:00:00 2001 From: dnomd343 Date: Wed, 3 Aug 2022 19:21:11 +0800 Subject: [PATCH] fix: remove redundant `/` --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf82d47..8af67f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -166,12 +166,12 @@ RUN git clone https://github.com/shadowsocks/qtun.git && \ WORKDIR ./simple-obfs/ RUN git submodule update --init --recursive && \ ./autogen.sh && ./configure --disable-documentation && make && \ - mv ./src//obfs-local ./src//obfs-server /plugins/ + mv ./src/obfs-local ./src/obfs-server /plugins/ # Compile qtun WORKDIR ../qtun/ RUN cargo update RUN cargo build --target-dir ./ --release && \ - mv ./release//qtun-client ./release//qtun-server /plugins/ && \ + mv ./release/qtun-client ./release/qtun-server /plugins/ && \ strip /plugins/* COPY --from=upx /upx/ /usr/ RUN upx -9 /plugins/qtun-*