mirror of
https://github.com/linuxserver/docker-mods.git
synced 2026-03-23 00:05:28 +08:00
26 lines
673 B
Docker
26 lines
673 B
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 && \
|
|
curl -o \
|
|
/root-layer/powershell.deb -L \
|
|
"https://github.com/PowerShell/PowerShell/releases/download/v${PS_VERSION}/powershell_${PS_VERSION}-1.ubuntu.18.04_amd64.deb"
|
|
|
|
COPY root/ /root-layer/
|
|
|
|
# runtime stage
|
|
FROM scratch
|
|
|
|
LABEL maintainer="aptalca"
|
|
|
|
# Add files from buildstage
|
|
COPY --from=buildstage /root-layer/ /
|