mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-04-10 14:12:46 +02:00
Add powershell (#178)
This commit is contained in:
parent
b3c379e578
commit
dcfa7cb114
21
powershell/Dockerfile
Normal file
21
powershell/Dockerfile
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
FROM debian:sid
|
||||||
|
MAINTAINER Christian Koep <christian.koep@fom-net.de>
|
||||||
|
|
||||||
|
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" ]
|
Loading…
x
Reference in New Issue
Block a user