Minor change to ubuntu powershell dockerfile

This commit is contained in:
Bradley Bickford 2024-12-05 20:27:39 -05:00
parent 53a5525de4
commit 65865ea2f6

View File

@ -20,7 +20,7 @@ RUN apt update -y && apt upgrade -y \
&& curl -fsSL https://code-server.dev/install.sh | sh
RUN source /etc/os-release \
&& curl -sSL https://packages.microsoft.com/config/ubuntu/$VERSION_ID/packages-microsoft-prod.deb -o /tmp/ms-prod.deb \
&& curl -sSL https://packages.microsoft.com/config/ubuntu/24.04/packages-microsoft-prod.deb -o /tmp/ms-prod.deb \
&& dpkg -i /tmp/ms-prod.deb \
&& rm -f /tmp/ms-prod.deb \
&& apt update \