We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 957a274 commit 5a0d0faCopy full SHA for 5a0d0fa
.devcontainer/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM mcr.microsoft.com/devcontainers/base:bullseye
+FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/base:bullseye
2
3
# Install .NET SDK 2.1
4
RUN apt-get update \
@@ -22,9 +22,10 @@ RUN git clone https://github.com/jasongin/nvs "${NVS_HOME}" \
22
&& nvs use 20.19.0 \
23
&& nvs link 20.19.0
24
25
-# Install Rush globally
+# Install Rush and AutoRest globally
26
RUN . "${NVS_HOME}/nvs.sh" \
27
- && npm install -g @microsoft/[email protected]
+ && npm install -g @microsoft/[email protected] \
28
+ && npm install -g autorest@latest
29
30
# Add nvs to shell profiles
31
RUN echo 'export NVS_HOME="$HOME/.nvs"' >> ~/.bashrc \
0 commit comments