From 938c5a799268e5b519dfba81e1eb277d3b93864b Mon Sep 17 00:00:00 2001 From: Raphael Jacobs Date: Sun, 2 Feb 2025 19:59:55 +0100 Subject: [PATCH] Try simpler copy --- Dockerfile | 7 ++++--- setup_langs/rust.sh | 0 2 files changed, 4 insertions(+), 3 deletions(-) mode change 100644 => 100755 setup_langs/rust.sh diff --git a/Dockerfile b/Dockerfile index 20478aa..d808a50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,11 +22,12 @@ RUN apk add --no-cache \ cargo \ git -COPY ./setup_langs ./setup_langs -COPY ./.config ./root/.config +COPY setup_langs /root/setup_langs +COPY .config /root/.config RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash -RUN cargo binstall --strategies crate-meta-data jj-cli +RUN cargo binstall --strategies crate-meta-data jj-cli; cargo binstall lazyjj # Set the entrypoint to fish +WORKDIR /root/ ENTRYPOINT ["fish"] diff --git a/setup_langs/rust.sh b/setup_langs/rust.sh old mode 100644 new mode 100755