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" ]