code-server-powershell: initial release

This commit is contained in:
aptalca
2020-04-15 20:05:29 -04:00
parent 5be8b23ea1
commit 77e7a3bd4b
7 changed files with 46 additions and 74 deletions
+23 -2
View File
@@ -1,4 +1,25 @@
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
# copy local files
COPY root/ /
LABEL maintainer="aptalca"
# Add files from buildstage
COPY --from=buildstage /root-layer/ /