docker_exporter/.github/actions/expand-tokens/Dockerfile
2019-12-15 13:14:03 +00:00

8 lines
No EOL
251 B
Docker

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