From dcfa7cb114578ec00f20c39a01daeca5c16a78f0 Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 18 Aug 2016 23:27:54 +0200 Subject: [PATCH] Add powershell (#178) --- powershell/Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 powershell/Dockerfile diff --git a/powershell/Dockerfile b/powershell/Dockerfile new file mode 100644 index 0000000..33e656c --- /dev/null +++ b/powershell/Dockerfile @@ -0,0 +1,21 @@ +FROM debian:sid +MAINTAINER Christian Koep + +ENV POWERSHELL_VERSION 6.0.0-alpha.9 + +RUN apt-get update && apt-get install -y \ + ca-certificates \ + curl \ + libunwind8 \ + libicu55 \ + 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" ]