dockerfiles/powershell/Dockerfile
Michael Käufl 7462133fed Updated powershell to 6.0.0-alpha.17
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
2017-03-18 15:48:19 +01:00

24 lines
669 B
Docker

FROM ubuntu:16.04
LABEL maintainer "Christian Koep <christian.koep@fom-net.de>"
ENV POWERSHELL_VERSION 6.0.0-alpha.17
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
libcurl3 \
libicu55 \
libssl1.0.0 \
libunwind8 \
dpkg \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN cd /usr/src \
&& curl -L -O https://github.com/PowerShell/PowerShell/releases/download/v${POWERSHELL_VERSION}/powershell_${POWERSHELL_VERSION}-1ubuntu1.16.04.1_amd64.deb \
&& dpkg -i powershell_${POWERSHELL_VERSION}-1ubuntu1.16.04.1_amd64.deb \
&& apt-get install -fy \
&& rm -rf /var/lib/apt/lists/* /usr/src/*
ENTRYPOINT [ "/usr/bin/powershell" ]