2018-08-13 14:42:28 -04: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
|
|
|
|
2020-05-14 22:50:38 -07:00
|
|
|
ENV POWERSHELL_VERSION 7.0.1
|
2016-08-18 23:27:54 +02:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
ca-certificates \
|
|
|
|
dpkg \
|
2018-08-13 14:42:28 -04:00
|
|
|
libcurl3 \
|
2018-06-18 11:57:20 -04:00
|
|
|
libicu57 \
|
|
|
|
libssl1.0.2 \
|
|
|
|
liblttng-ust0 \
|
2018-08-13 14:42:28 -04: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 14:42:28 -04: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 \
|
2020-05-15 09:08:19 -07:00
|
|
|
&& ln -snf "/opt/microsoft/powershell/7/pwsh" /usr/bin/pwsh \
|
2016-08-18 23:27:54 +02:00
|
|
|
&& apt-get install -fy \
|
2020-05-15 09:33:29 -07:00
|
|
|
&& rm -rf /var/lib/apt/lists/* /usr/src/* /tmp/powershell.deb \
|
|
|
|
&& which pwsh
|
2016-08-18 23:27:54 +02:00
|
|
|
|
2018-01-26 12:14:14 -06:00
|
|
|
ENTRYPOINT [ "/usr/bin/pwsh" ]
|