From 5b75b3cb75c9ca161b136e92208ebc1d43c4dc90 Mon Sep 17 00:00:00 2001 From: Nate Ferrell Date: Mon, 9 Sep 2019 00:47:14 -0500 Subject: [PATCH] removed Dockerfile to allow it to pull from the template repo instead --- Dockerfile | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 1bf40dd..0000000 --- a/Dockerfile +++ /dev/null @@ -1,11 +0,0 @@ -FROM mcr.microsoft.com/powershell:ubuntu-18.04 as base -RUN apt-get update && apt-get install -y git - -FROM base as src -LABEL maintainer="nferrell" -LABEL description="Ubuntu 18.04 for PowerShell module testing in CI" -LABEL vendor="scrthq" -SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $VerbosePreference = 'Continue'; $ProgressPreference = 'SilentlyContinue';"] -COPY [".", "/Source/"] -WORKDIR /Source -ENTRYPOINT [ "pwsh", "-command", ". ./build.ps1 -Task Test" ]