fix powershell

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-06-18 11:57:20 -04:00
parent ac22fe9078
commit 4ca3ce53b0
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -1,4 +1,4 @@
FROM ubuntu:16.04
FROM debian:buster
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
ENV POWERSHELL_VERSION 6.1.0-preview.3
@ -6,18 +6,16 @@ ENV POWERSHELL_VERSION 6.1.0-preview.3
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
libcurl3 \
libicu55 \
libssl1.0.0 \
libunwind8 \
liblttng-ust0 \
dpkg \
libicu57 \
libssl1.0.2 \
liblttng-ust0 \
--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}-1.ubuntu.16.04_amd64.deb" \
&& dpkg -i powershell_${POWERSHELL_VERSION}-1.ubuntu.16.04_amd64.deb \
&& 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" \
&& apt-get install -fy \
&& rm -rf /var/lib/apt/lists/* /usr/src/*