idk lets try this

This commit is contained in:
Sander Saares 2019-12-15 07:17:41 +00:00
parent cf64b3d548
commit c7a7fe517b
14 changed files with 373 additions and 0 deletions

View file

@ -0,0 +1,8 @@
FROM mcr.microsoft.com/powershell
WORKDIR /action
RUN pwsh -c '$ProgressPreference = "SilentlyContinue"; Install-Module Axinom.DevOpsTooling -Scope AllUsers -AllowPrerelease -Force'
COPY *.ps1 .
ENTRYPOINT ["pwsh", "-c", "& /action/entrypoint.ps1"]