diff --git a/containers/powershell/.devcontainer/Dockerfile b/containers/powershell/.devcontainer/Dockerfile index 693c1bfd34..b8a2ead631 100644 --- a/containers/powershell/.devcontainer/Dockerfile +++ b/containers/powershell/.devcontainer/Dockerfile @@ -3,12 +3,11 @@ # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. #------------------------------------------------------------------------------------------------------------- -FROM microsoft/powershell +FROM mcr.microsoft.com/powershell # Install git, process tools -RUN apt-get update && apt-get -y install git procps - -# Clean up -RUN apt-get autoremove -y \ +RUN apt-get update && apt-get -y install git procps \ + # Clean up + && apt-get autoremove -y \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/*