From 6b34d74c74a1acd58399bc9c952eb46aa97f9bf7 Mon Sep 17 00:00:00 2001 From: Jacob Hands Date: Fri, 6 Oct 2017 09:05:30 -0500 Subject: [PATCH] Update PowerShell version to beta 8 (#302) * Update PowerShell version * Fix PowerShell release naming and add missing dep --- powershell/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/powershell/Dockerfile b/powershell/Dockerfile index 3143d25..0812c6d 100644 --- a/powershell/Dockerfile +++ b/powershell/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:16.04 LABEL maintainer "Christian Koep " -ENV POWERSHELL_VERSION 6.0.0-beta.7 +ENV POWERSHELL_VERSION 6.0.0-beta.8 RUN apt-get update && apt-get install -y \ ca-certificates \ @@ -10,13 +10,14 @@ RUN apt-get update && apt-get install -y \ libicu55 \ libssl1.0.0 \ libunwind8 \ + liblttng-ust0 \ 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 \ + && 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 \ && apt-get install -fy \ && rm -rf /var/lib/apt/lists/* /usr/src/*