From 7d6a3c6fd5dd34605820ef69321e4e9e3fc2288c Mon Sep 17 00:00:00 2001 From: nalpine <2104848+nalpine@users.noreply.github.com> Date: Thu, 27 May 2021 13:14:39 -0400 Subject: [PATCH] Slight Format Edit --- .devcontainer/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 953bcab0..a7b01293 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,8 +3,9 @@ FROM mcr.microsoft.com/vscode/devcontainers/rust:1 WORKDIR /workspaces RUN curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh && rm get-docker.sh RUN rustup component add rust-src clippy -RUN curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-x86_64-unknown-linux-gnu.gz -o /usr/local/cargo/bin/rust-analyzer.gz -RUN gzip -d /usr/local/cargo/bin/rust-analyzer.gz && chmod +x /usr/local/cargo/bin/rust-analyzer +RUN curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-x86_64-unknown-linux-gnu.gz \ + -o /usr/local/cargo/bin/rust-analyzer.gz && gzip -d /usr/local/cargo/bin/rust-analyzer.gz \ + && chmod +x /usr/local/cargo/bin/rust-analyzer RUN wget https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.13.5.linux-amd64.tar.gz RUN mkdir /workspaces/go ENV PATH $PATH:/usr/local/go/bin