forked from azure-ad-b2c/deploy-trustframework-policy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Andrews-McMeel-Universal/DEVOPS-XXX-use-ne…
…w-docker-based-b2c-action [DEVOPS-XXX] Use new docker based b2c action
- Loading branch information
Showing
4 changed files
with
38 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,4 +65,4 @@ jobs: | |
needs: [application-ci] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
FROM ghcr.io/rajbos/actions-marketplace/powershell:7 | ||
FROM mcr.microsoft.com/powershell:ubuntu-18.04 | ||
|
||
WORKDIR /app | ||
|
||
COPY entrypoint.ps1 ./ | ||
RUN pwsh -Command "Install-Module -Name powershell-yaml -Repository PSGallery" | ||
|
||
ENTRYPOINT pwsh -File ./entrypoint.ps1 | ||
COPY . . | ||
|
||
ENTRYPOINT ["pwsh", "/app/entrypoint.ps1"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters