dockerfiles/powershell/Dockerfile

24 lines
661 B
Docker
Raw Normal View History

FROM ubuntu:16.04
2016-08-18 23:27:54 +02:00
MAINTAINER Christian Koep <christian.koep@fom-net.de>
2016-12-16 15:16:42 +01:00
ENV POWERSHELL_VERSION 6.0.0-alpha.14
2016-08-18 23:27:54 +02:00
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
libcurl3 \
2016-08-18 23:27:54 +02:00
libicu55 \
libssl1.0.0 \
libunwind8 \
2016-08-18 23:27:54 +02:00
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" ]