Merge pull request #183 from meysamhadeli/develop

chore: Update identity server
This commit is contained in:
Meysam Hadeli 2023-02-14 00:21:58 +03:30 committed by GitHub
commit 1e2ea92465
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -43,11 +43,11 @@ runs:
if: ${{ github.ref == 'refs/heads/main' && success() }}
shell: bash
run: |
docker build -t ${{ inputs.registry-username }}/${{ inputs.image-name }}:v1.5.3 -f "${{ github.workspace }}/${{ inputs.dockerfile-path }}" .
docker build -t ${{ inputs.registry-username }}/${{ inputs.image-name }}:v1.5.4 -f "${{ github.workspace }}/${{ inputs.dockerfile-path }}" .
- name: Publish Docker Image
if: ${{ github.ref == 'refs/heads/main' && success() }}
shell: bash
run: |
docker push ${{ inputs.registry-username }}/${{ inputs.image-name }}:v1.5.3
docker push ${{ inputs.registry-username }}/${{ inputs.image-name }}:v1.5.4

View File

@ -38,6 +38,8 @@ ENV ASPNETCORE_URLS https://*:5005, http://*:6005
ENV ASPNETCORE_ENVIRONMENT docker
COPY ["./certs/is4-container-cert.pfx", "./is4-container-cert.pfx"]
COPY ./src/Services/Identity/certs/ ./Services/Identity/certs/
ENTRYPOINT ["dotnet", "Identity.Api.dll"]