1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-03-07 19:30:10 +01:00

24 lines
718 B
Docker
Raw Normal View History

FROM debian:sid
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.0.4
2016-08-18 23:27:54 +02:00
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
dpkg \
libicu57 \
libssl1.0.2 \
liblttng-ust0 \
2016-08-18 23:27:54 +02:00
--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-preview_${POWERSHELL_VERSION}-1.debian.9_amd64.deb" \
&& dpkg -i "powershell-preview_${POWERSHELL_VERSION}-1.debian.9_amd64.deb" \
&& ln -snf /opt/microsoft/powershell/6-preview/pwsh /usr/bin/pwsh \
2016-08-18 23:27:54 +02:00
&& apt-get install -fy \
&& rm -rf /var/lib/apt/lists/* /usr/src/*
2018-01-26 12:14:14 -06:00
ENTRYPOINT [ "/usr/bin/pwsh" ]