feat(devcontainer): remove binary download in docker image

This commit is contained in:
Warren Buckley 2023-10-12 18:48:27 +00:00 committed by Jan De Dobbeleer
parent df07df9e35
commit 108a836736

View file

@ -38,11 +38,6 @@ RUN echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/3
ARG USERNAME=vscode
# Download the oh-my-posh binary
RUN mkdir /home/${USERNAME}/bin; \
wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-$(dpkg --print-architecture) -O /home/${USERNAME}/bin/oh-my-posh; \
chmod +x /home/${USERNAME}/bin/oh-my-posh; \
chown ${USERNAME}: /home/${USERNAME}/bin;
# NOTE: devcontainers are Linux-only at this time but when
# Windows or Darwin is supported someone will need to improve