fix powershell

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-08-13 14:42:28 -04:00
parent 1018155418
commit 38d087c261
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -1,23 +1,25 @@
FROM debian:sid FROM debian:stretch-slim
LABEL maintainer "Christian Koep <christiankoep@gmail.com>" LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
ENV POWERSHELL_VERSION 6.0.4 ENV POWERSHELL_VERSION 6.0.4
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
ca-certificates \ ca-certificates \
curl \
dpkg \ dpkg \
libcurl3 \
libicu57 \ libicu57 \
libssl1.0.2 \ libssl1.0.2 \
liblttng-ust0 \ liblttng-ust0 \
libunwind8 \
wget \
--no-install-recommends \ --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN cd /usr/src \ RUN cd /usr/src \
&& curl -L -O "https://github.com/PowerShell/PowerShell/releases/download/v${POWERSHELL_VERSION}/powershell-preview_${POWERSHELL_VERSION}-1.debian.9_amd64.deb" \ && wget "https://github.com/PowerShell/PowerShell/releases/download/v${POWERSHELL_VERSION}/powershell_${POWERSHELL_VERSION}-1.debian.9_amd64.deb" -O /tmp/powershell.deb \
&& dpkg -i "powershell-preview_${POWERSHELL_VERSION}-1.debian.9_amd64.deb" \ && dpkg -i /tmp/powershell.deb \
&& ln -snf /opt/microsoft/powershell/6-preview/pwsh /usr/bin/pwsh \ && ln -snf "/opt/microsoft/powershell/${POWERSHELL_VERSION}/pwsh" /usr/bin/pwsh \
&& apt-get install -fy \ && apt-get install -fy \
&& rm -rf /var/lib/apt/lists/* /usr/src/* && rm -rf /var/lib/apt/lists/* /usr/src/* /tmp/powershell.deb
ENTRYPOINT [ "/usr/bin/pwsh" ] ENTRYPOINT [ "/usr/bin/pwsh" ]