Skip to content

Commit

Permalink
use tarball instead of rpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Sturm committed Feb 16, 2024
1 parent 9b6b547 commit e270da0
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 113 deletions.
8 changes: 4 additions & 4 deletions linux/tools.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ RUN az aks install-cli \
&& chmod +x /usr/local/bin/kubelogin

# Install vscode
RUN wget -nv -O vscode.rpm "https://go.microsoft.com/fwlink/?LinkID=760867" \
&& tdnf install -y vscode.rpm \
&& mv /bin/code /bin/vscode \
&& rm vscode.rpm
RUN wget -nv -O vscode.tar.gz "https://code.visualstudio.com/sha/download?build=stable&os=cli-alpine-x64" \
&& tar -xvzf vscode.tar.gz \
&& mv ./code /bin/vscode \
&& rm vscode.tar.gz

# Install azure-developer-cli (azd)
ENV AZD_IN_CLOUDSHELL 1
Expand Down
Loading

0 comments on commit e270da0

Please sign in to comment.