We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd7b39 commit d25499cCopy full SHA for d25499c
1 file changed
.devcontainer/Dockerfile
@@ -56,15 +56,13 @@ RUN tar -C /usr/local -xzf go.tar.gz
56
ENV PATH="${PATH}:/usr/local/go/bin"
57
58
RUN go install github.com/asdf-vm/asdf/cmd/asdf@v0.16.0
59
-ENV PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH"
+ENV PATH="/root/.asdf/shims:$PATH"
60
ENV PATH="${PATH}:/root/go/bin"
61
62
RUN asdf plugin add scarb
63
-RUN asdf install scarb 2.9.4
64
-
65
-# For now add katana to the path to ensure the tests can be run without issues.
66
RUN asdf plugin add dojo
67
-RUN asdf install dojo 1.4.1
+RUN echo "scarb 2.9.4\ndojo 1.4.1" > /.tool-versions
+RUN asdf install
68
69
RUN chown -R root:root /usr/local/cargo
70
RUN chmod -R 700 /usr/local/cargo
0 commit comments