Skip to content

Commit 0102542

Browse files
committed
Updated Version
1 parent 2a6a238 commit 0102542

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.devops/workshop-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ steps:
4848
metadata:
4949
name: ccc-oss-graphqlworkshop
5050
spec:
51-
replicas: 2
51+
replicas: 1
5252
selector:
5353
matchLabels:
5454
app: ccc-oss-graphqlworkshop

code/complete/GraphQL/GraphQL.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
</PropertyGroup>
1313

1414
<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">
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
<PrivateAssets>all</PrivateAssets>
2222
</PackageReference>

code/complete/GraphQL/dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 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
33
WORKDIR /app
44

55
# Copy csproj and restore as distinct layers
@@ -8,7 +8,7 @@ RUN dotnet restore
88
RUN dotnet publish -c Release -o out
99

1010
# 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
1212
WORKDIR /app
1313
COPY --from=build-env /app/out .
1414
ENTRYPOINT ["dotnet", "GraphQL.dll"]

code/complete/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "6.0.100-preview.7.21379.14"
3+
"version": "6.0.100"
44
}
55
}

0 commit comments

Comments
 (0)