File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 22
22
"editor.defaultFormatter" : " esbenp.prettier-vscode"
23
23
},
24
24
"typescript.tsdk" : " node_modules/typescript/lib" ,
25
- "typescript.enablePromptUseWorkspaceTsdk" : true
25
+ "typescript.enablePromptUseWorkspaceTsdk" : true ,
26
+ "[dockerfile]" : {
27
+ "editor.defaultFormatter" : " ms-azuretools.vscode-docker"
28
+ }
26
29
}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ RUN dotnet restore -a $TARGETARCH
17
17
18
18
COPY . .
19
19
20
- RUN dotnet publish -a $TARGETARCH -c $target -o obj/docker/publish
20
+ RUN dotnet publish -a $TARGETARCH --no-restore - c $target -o obj/docker/publish
21
21
22
22
RUN cp -r /src/obj/docker/publish /OpenIdConnectServerMock
23
23
@@ -38,6 +38,6 @@ EXPOSE 80
38
38
EXPOSE 443
39
39
40
40
HEALTHCHECK --start-period=2s --interval=1s --timeout=100ms --retries=10 \
41
- CMD curl -k --location https://localhost/health || exit 1
41
+ CMD curl -k --location https://localhost/health || exit 1
42
42
43
43
ENTRYPOINT ["dotnet" , "OpenIdConnectServerMock.dll" ]
Original file line number Diff line number Diff line change 26
26
</ItemGroup >
27
27
28
28
<ItemGroup >
29
- <PackageReference Include =" Duende.IdentityServer" Version =" 7.0.5 " />
30
- <PackageReference Include =" Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version =" 8.0.6 " />
31
- <PackageReference Include =" Microsoft.Extensions.FileProviders.Embedded" Version =" 8.0.6 " />
32
- <PackageReference Include =" Serilog.AspNetCore" Version =" 8.0.1 " />
29
+ <PackageReference Include =" Duende.IdentityServer" Version =" 7.0.8 " />
30
+ <PackageReference Include =" Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version =" 8.0.11 " />
31
+ <PackageReference Include =" Microsoft.Extensions.FileProviders.Embedded" Version =" 8.0.11 " />
32
+ <PackageReference Include =" Serilog.AspNetCore" Version =" 8.0.3 " />
33
33
<PackageReference Include =" YamlDotNet" Version =" 15.3.0" />
34
34
</ItemGroup >
35
35
You can’t perform that action at this time.
0 commit comments