From d51187d82671e317bb837f1d02adf4b6cd1203ef Mon Sep 17 00:00:00 2001 From: Maddox Werts Date: Sun, 19 Jan 2025 10:15:23 -0500 Subject: [PATCH] Removed old programs --- Dockerfile | 27 --------------------------- rust-ls | 5 ----- 2 files changed, 32 deletions(-) delete mode 100644 Dockerfile delete mode 100755 rust-ls diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 5fb5217..0000000 --- a/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -## BACKEND ## -# Parent Image -FROM debian - -# Creating directories -WORKDIR /tmp - -# Installing Deps -RUN apt update -y -RUN apt install -y wget build-essential libssl-dev pkg-config - -# Downloading Rust Install Script -RUN wget https://sh.rustup.rs -O rust.sh -RUN chmod +x rust.sh - -# Installing Rust -RUN ./rust.sh -y - -# Downloading Rust-Analyzer -RUN wget https://github.com/rust-lang/rust-analyzer/releases/download/2025-01-13/rust-analyzer-x86_64-unknown-linux-gnu.gz -O rust-analyzer.gz -RUN gunzip -c rust-analyzer.gz > /bin/rust-analyzer - -# Installing rust-analyzer -RUN chmod +x /bin/rust-analyzer - -## RUNTIME ## -ENTRYPOINT ["/bin/rust-analyzer"] \ No newline at end of file diff --git a/rust-ls b/rust-ls deleted file mode 100755 index 4bbfee9..0000000 --- a/rust-ls +++ /dev/null @@ -1,5 +0,0 @@ -docker run --rm -it \ - -u $(stat -c '%u:%g' .) \ - -v "$PWD:$PWD:ro,z" \ - -w "$PWD" \ - rust-ls "$@" \ No newline at end of file