dockerfiles/powershell/Dockerfile
Jess Frazelle 38d087c261
fix powershell
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-08-13 14:42:28 -04:00

26 lines
752 B
Docker

FROM debian:stretch-slim
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
ENV POWERSHELL_VERSION 6.0.4
RUN apt-get update && apt-get install -y \
ca-certificates \
dpkg \
libcurl3 \
libicu57 \
libssl1.0.2 \
liblttng-ust0 \
libunwind8 \
wget \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN cd /usr/src \
&& 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 /tmp/powershell.deb \
&& ln -snf "/opt/microsoft/powershell/${POWERSHELL_VERSION}/pwsh" /usr/bin/pwsh \
&& apt-get install -fy \
&& rm -rf /var/lib/apt/lists/* /usr/src/* /tmp/powershell.deb
ENTRYPOINT [ "/usr/bin/pwsh" ]