You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deployment/docker/server/powershell/Dockerfile
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -10,24 +10,30 @@ USER root
10
10
11
11
# Install dependencies
12
12
RUN apk add --no-cache \
13
-
curl \
14
13
ca-certificates \
15
14
less \
16
-
ncurses \
15
+
ncurses-terminfo-base \
17
16
krb5-libs \
18
17
libgcc \
19
18
libintl \
20
19
libssl3 \
21
20
libstdc++ \
22
21
tzdata \
23
22
userspace-rcu \
24
-
zlib
23
+
zlib \
24
+
icu-libs \
25
+
curl
25
26
26
-
RUN wget -O /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v${POWERSHELL_VERSION}/powershell-${POWERSHELL_VERSION}-linux-${TARGETARCH/amd/x}.tar.gz
RUN wget -O /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v${POWERSHELL_VERSION}/powershell-${POWERSHELL_VERSION}-linux-musl-${TARGETARCH/amd/x}.tar.gz
27
32
28
33
RUN mkdir -p /opt/microsoft/powershell/${POWERSHELL_VERSION} \
29
34
&& tar zxf /tmp/powershell.tar.gz -C /opt/microsoft/powershell/${POWERSHELL_VERSION} \
0 commit comments