Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Use correct PowerShell container #29

Merged
merged 2 commits into from
May 7, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion containers/powershell/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# 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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One comment, If you cleanup in separate layers, like this, the final image will be clean, but the data will still be in the layer. It's better to cleanup in the same layer.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TylerLeonhardt I created a PR for your repo to fix this.

TylerLeonhardt#1

Expand Down