diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 76b7b9b..0000000 --- a/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM rust:1.88 - -# Installs clippy and llvm19 onto a new image - -RUN apt-get update && \ - apt-get install -y wget gnupg lsb-release software-properties-common && \ - bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" && \ - apt-get install -y \ - llvm-19 clang-19 lld-19 llvm-19-dev && \ - apt-get clean && rm -rf /var/lib/apt/lists/* \ - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - -RUN rustup component add clippy -RUN rustup component add rustfmt - -WORKDIR /workspace \ No newline at end of file