2018-08-13 20:42:28 +02:00
|
|
|
FROM debian:stretch-slim
|
2017-04-04 09:19:34 +02:00
|
|
|
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
|
2016-08-18 23:27:54 +02:00
|
|
|
|
2018-09-14 16:00:27 +02:00
|
|
|
ENV POWERSHELL_VERSION 6.1.0
|
2016-08-18 23:27:54 +02:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
ca-certificates \
|
|
|
|
dpkg \
|
2018-08-13 20:42:28 +02:00
|
|
|
libcurl3 \
|
2018-06-18 17:57:20 +02:00
|
|
|
libicu57 \
|
|
|
|
libssl1.0.2 \
|
|
|
|
liblttng-ust0 \
|
2018-08-13 20:42:28 +02:00
|
|
|
libunwind8 \
|
|
|
|
wget \
|
2016-08-18 23:27:54 +02:00
|
|
|
--no-install-recommends \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
RUN cd /usr/src \
|
2018-08-13 20:42:28 +02:00
|
|
|
&& 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 \
|
2016-08-18 23:27:54 +02:00
|
|
|
&& apt-get install -fy \
|
2018-08-13 20:42:28 +02:00
|
|
|
&& rm -rf /var/lib/apt/lists/* /usr/src/* /tmp/powershell.deb
|
2016-08-18 23:27:54 +02:00
|
|
|
|
2018-01-26 19:14:14 +01:00
|
|
|
ENTRYPOINT [ "/usr/bin/pwsh" ]
|