mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-27 02:32:06 -04:00
1a79295280
Powershell Tarballs dont use underscores in their file names, unlike the distro packages which do. For example: Linux x64 TAR: https://github.com/PowerShell/PowerShell/releases/download/v7.0.1/powershell-7.0.1-linux-x64.tar.gz Debian 10 DEB: https://github.com/PowerShell/PowerShell/releases/download/v7.0.1/powershell_7.0.1-1.debian.10_amd64.deb
32 lines
1.1 KiB
Docker
32 lines
1.1 KiB
Docker
FROM lsiobase/alpine:3.11 as buildstage
|
|
|
|
ARG PS_VERSION
|
|
|
|
RUN \
|
|
apk add --no-cache \
|
|
curl && \
|
|
if [ -z ${PS_VERSION+x} ]; then \
|
|
PS_VERSION=$(curl -sX GET "https://api.github.com/repos/PowerShell/PowerShell/releases/latest" \
|
|
| awk '/tag_name/{print $4;exit}' FS='[""]' | awk '{print substr($1,2); }'); \
|
|
fi && \
|
|
mkdir -p /root-layer/powershell && \
|
|
curl -o \
|
|
/root-layer/powershell/powershell_x86_64.tar.gz -L \
|
|
"https://github.com/PowerShell/PowerShell/releases/download/v${PS_VERSION}/powershell-${PS_VERSION}-linux-x64.tar.gz" && \
|
|
curl -o \
|
|
/root-layer/powershell/powershell_armv7l.tar.gz -L \
|
|
"https://github.com/PowerShell/PowerShell/releases/download/v${PS_VERSION}/powershell-${PS_VERSION}-linux-arm32.tar.gz" && \
|
|
curl -o \
|
|
/root-layer/powershell/powershell_aarch64.tar.gz -L \
|
|
"https://github.com/PowerShell/PowerShell/releases/download/v${PS_VERSION}/powershell-${PS_VERSION}-linux-arm64.tar.gz"
|
|
|
|
COPY root/ /root-layer/
|
|
|
|
# runtime stage
|
|
FROM scratch
|
|
|
|
LABEL maintainer="aptalca"
|
|
|
|
# Add files from buildstage
|
|
COPY --from=buildstage /root-layer/ /
|