From 630bd82637848cc02ce37a998a3b57bd4db35798 Mon Sep 17 00:00:00 2001 From: Tarrence van As Date: Fri, 15 Dec 2023 16:18:21 -0500 Subject: [PATCH] Fix devcontainer permissions --- .devcontainer/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3b1199441b..4bab5248dc 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -31,3 +31,6 @@ RUN curl -L https://install.dojoengine.org | bash RUN curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | bash ENV PATH=${PATH}:/root/.dojo/bin RUN dojoup + +RUN chown -R root:root /usr/local/cargo +RUN chmod -R 700 /usr/local/cargo \ No newline at end of file