File tree Expand file tree Collapse file tree 1 file changed +4
-21
lines changed
Expand file tree Collapse file tree 1 file changed +4
-21
lines changed Original file line number Diff line number Diff line change 1- # --platform linux/arm64/v8
2- FROM alpine
1+ # --platform linux/amd64
2+ FROM debian:bullseye-slim
33
44# Install dependencies
5- RUN apk add --no-cache \
6- ca-certificates \
7- less \
8- ncurses-terminfo-base \
9- krb5-libs \
10- libgcc \
11- libintl \
12- libssl3 \
13- libstdc++ \
14- tzdata \
15- userspace-rcu \
16- zlib \
17- icu-libs \
18- curl
19-
20- RUN apk -X https://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache \
21- lttng-ust \
22- openssh-client
5+ RUN apt-get update && apt-get install -y curl libicu67 libssl1.1 libunwind8
236
247# Download and install PowerShell
25- RUN curl -L -o powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-musl- x64.tar.gz \
8+ RUN curl -L -o powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-x64.tar.gz \
269 && mkdir -p /opt/microsoft/powershell/7 \
2710 && tar -xvf powershell.tar.gz -C /opt/microsoft/powershell/7 \
2811 && rm powershell.tar.gz \
You can’t perform that action at this time.
0 commit comments