dockerfiles/powershell/Dockerfile
Jess Frazelle 0a0c49c90f
update versions
Signed-off-by: Jess Frazelle <acidburn@google.com>
2016-12-02 12:08:26 -08:00

22 lines
632 B
Docker

FROM debian:sid
MAINTAINER Christian Koep <christian.koep@fom-net.de>
ENV POWERSHELL_VERSION 6.0.0-alpha.13
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" ]