Skip to content

Commit c24a945

Browse files
authored
Update linux-arm64.dockerfile
1 parent 4680369 commit c24a945

File tree

1 file changed

+4
-21
lines changed

1 file changed

+4
-21
lines changed

docker/linux-arm64.dockerfile

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,11 @@
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 \

0 commit comments

Comments
 (0)