dockerfiles/powershell/Dockerfile

26 lines
732 B
Docker
Raw Normal View History

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
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 \
libcurl3 \
libicu57 \
libssl1.0.2 \
liblttng-ust0 \
libunwind8 \
wget \
2016-08-18 23:27:54 +02:00
--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/6/pwsh" /usr/bin/pwsh \
2016-08-18 23:27:54 +02:00
&& apt-get install -fy \
&& 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" ]