File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 48
48
metadata:
49
49
name: ccc-oss-graphqlworkshop
50
50
spec:
51
- replicas: 2
51
+ replicas: 1
52
52
selector:
53
53
matchLabels:
54
54
app: ccc-oss-graphqlworkshop
Original file line number Diff line number Diff line change 12
12
</PropertyGroup >
13
13
14
14
<ItemGroup >
15
- <PackageReference Include =" HotChocolate.AspNetCore" Version =" 12.0 .1" />
16
- <PackageReference Include =" HotChocolate.Data.EntityFramework" Version =" 12.0 .1" />
17
- <PackageReference Include =" HotChocolate.PersistedQueries.FileSystem" Version =" 12.0 .1" />
18
- <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 6.0.0-preview.7.21378.4 " />
19
- <PackageReference Include =" Microsoft.EntityFrameworkCore.Tools" Version =" 6.0.0-preview.7.21378.4 " >
15
+ <PackageReference Include =" HotChocolate.AspNetCore" Version =" 12.3 .1" />
16
+ <PackageReference Include =" HotChocolate.Data.EntityFramework" Version =" 12.3 .1" />
17
+ <PackageReference Include =" HotChocolate.PersistedQueries.FileSystem" Version =" 12.3 .1" />
18
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 6.0.0" />
19
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Tools" Version =" 6.0.0" >
20
20
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
21
21
<PrivateAssets >all</PrivateAssets >
22
22
</PackageReference >
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
- FROM mcr.microsoft.com/dotnet/sdk:6.0.100-preview.7-alpine3.13- amd64 AS build-env
2
+ FROM mcr.microsoft.com/dotnet/sdk:6.0.100-amd64 AS build-env
3
3
WORKDIR /app
4
4
5
5
# Copy csproj and restore as distinct layers
@@ -8,7 +8,7 @@ RUN dotnet restore
8
8
RUN dotnet publish -c Release -o out
9
9
10
10
# Build runtime image
11
- FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-preview.7-alpine3.13- amd64
11
+ FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-amd64
12
12
WORKDIR /app
13
13
COPY --from=build-env /app/out .
14
14
ENTRYPOINT ["dotnet", "GraphQL.dll"]
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 6.0.100-preview.7.21379.14 "
3
+ "version" : " 6.0.100"
4
4
}
5
5
}
You can’t perform that action at this time.
0 commit comments