dockerfiles/powershell/Dockerfile
Jess Frazelle b14a426eb0
update versions
Signed-off-by: Jess Frazelle <jess@oxide.computer>
2020-05-14 22:50:38 -07:00

26 lines
732 B
Docker

FROM debian:stretch-slim
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
ENV POWERSHELL_VERSION 7.0.1
RUN apt-get update && apt-get install -y \
ca-certificates \
dpkg \
libcurl3 \
libicu57 \
libssl1.0.2 \
liblttng-ust0 \
libunwind8 \
wget \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN cd /usr/src \
&& wget "https://github.com/PowerShell/PowerShell/releases/download/v${POWERSHELL_VERSION}/powershell_${POWERSHELL_VERSION}-1.debian.9_amd64.deb" -O /tmp/powershell.deb \
&& dpkg -i /tmp/powershell.deb \
&& ln -snf "/opt/microsoft/powershell/6/pwsh" /usr/bin/pwsh \
&& apt-get install -fy \
&& rm -rf /var/lib/apt/lists/* /usr/src/* /tmp/powershell.deb
ENTRYPOINT [ "/usr/bin/pwsh" ]