diff --git a/.github/actions/docker-build-publish/action.yml b/.github/actions/docker-build-publish/action.yml index 25c8fa0..d38e0df 100644 --- a/.github/actions/docker-build-publish/action.yml +++ b/.github/actions/docker-build-publish/action.yml @@ -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 diff --git a/src/Services/Identity/Dockerfile b/src/Services/Identity/Dockerfile index c37e4e7..38e4846 100644 --- a/src/Services/Identity/Dockerfile +++ b/src/Services/Identity/Dockerfile @@ -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"]