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

Commit 7ec3412

Browse files
authored
Merge pull request #29 from TylerLeonhardt/patch-1
Use correct PowerShell container
2 parents abf399a + 98df299 commit 7ec3412

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

containers/powershell/.devcontainer/Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
44
#-------------------------------------------------------------------------------------------------------------
55

6-
FROM microsoft/powershell
6+
FROM mcr.microsoft.com/powershell
77

88
# Install git, process tools
9-
RUN apt-get update && apt-get -y install git procps
10-
11-
# Clean up
12-
RUN apt-get autoremove -y \
9+
RUN apt-get update && apt-get -y install git procps \
10+
# Clean up
11+
&& apt-get autoremove -y \
1312
&& apt-get clean -y \
1413
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)