Another minor change to the ubuntu pwsh dockerfile

This commit is contained in:
Bradley Bickford 2024-12-05 20:29:23 -05:00
parent 65865ea2f6
commit 02a74081c1

View File

@ -19,8 +19,7 @@ RUN apt update -y && apt upgrade -y \
&& git lfs install \
&& curl -fsSL https://code-server.dev/install.sh | sh
RUN source /etc/os-release \
&& curl -sSL https://packages.microsoft.com/config/ubuntu/24.04/packages-microsoft-prod.deb -o /tmp/ms-prod.deb \
RUN 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 \