Skip to content

Commit ffca2da

Browse files
author
Ramón Tomás
committed
Migrated to netcore 2.2
1 parent eda8a6e commit ffca2da

35 files changed

Lines changed: 67 additions & 69 deletions

File tree

docker-compose.override.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,10 @@ services:
187187
environment:
188188
- ASPNETCORE_ENVIRONMENT=Development
189189
- IdentityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5110.
190+
- urls__basket=http://basket.api
191+
- urls__catalog=http://catalog.api
192+
- urls__orders=http://ordering.api
193+
- urls__identity=http://identity.api
190194
- CatalogUrlHC=http://catalog.api/hc
191195
- OrderingUrlHC=http://ordering.api/hc
192196
- IdentityUrlHC=http://identity.api/hc

src/ApiGateways/ApiGw-Base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM microsoft/dotnet:2.2.0-preview3-aspnetcore-runtime AS base
1+
FROM microsoft/dotnet:2.2.0-aspnetcore-runtime AS base
22
WORKDIR /app
33
EXPOSE 80
44

5-
FROM microsoft/dotnet:2.2.100-preview3-sdk AS build
5+
FROM microsoft/dotnet:2.2.100-sdk AS build
66
WORKDIR /src
77
COPY . .
88
WORKDIR /src/src/ApiGateways/ApiGw-Base/

src/ApiGateways/ApiGw-Base/OcelotApiGw.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<ItemGroup>
1212
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="2.2.0" />
1313
<PackageReference Include="AspNetCore.HealthChecks.Uris" Version="2.2.0" />
14-
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0-preview3-35497" />
14+
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
1515
<PackageReference Include="Microsoft.AspNetCore.HealthChecks" Version="1.0.0" />
1616
<PackageReference Include="Ocelot" Version="12.0.1" />
1717
</ItemGroup>

src/ApiGateways/Mobile.Bff.Shopping/aggregator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM microsoft/dotnet:2.2.0-preview3-aspnetcore-runtime AS base
1+
FROM microsoft/dotnet:2.2.0-aspnetcore-runtime AS base
22
WORKDIR /app
33
EXPOSE 80
44

5-
FROM microsoft/dotnet:2.2.100-preview3-sdk AS build
5+
FROM microsoft/dotnet:2.2.100-sdk AS build
66
WORKDIR /src
77
COPY . .
88
WORKDIR /src/src/ApiGateways/Mobile.Bff.Shopping/aggregator

src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM microsoft/dotnet:2.2.0-preview3-aspnetcore-runtime AS base
1+
FROM microsoft/dotnet:2.2.0-aspnetcore-runtime AS base
22
WORKDIR /app
33
EXPOSE 80
44

5-
FROM microsoft/dotnet:2.2.100-preview3-sdk AS build
5+
FROM microsoft/dotnet:2.2.100-sdk AS build
66
WORKDIR /src
77
COPY . .
88
WORKDIR /src/src/ApiGateways/Web.Bff.Shopping/aggregator

src/ApiGateways/Web.Bff.Shopping/aggregator/Web.Shopping.HttpAggregator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<ItemGroup>
1515
<PackageReference Include="AspNetCore.HealthChecks.Uris" Version="2.2.0" />
1616
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="2.2.0" />
17-
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0-preview3-35497" />
17+
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
1818
<PackageReference Include="Swashbuckle.AspNetCore" Version="3.0.0" />
1919
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="2.2.0-preview3-35497" />
2020
</ItemGroup>

src/Services/Basket/Basket.API/Basket.API.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
<PackageReference Include="Microsoft.ApplicationInsights.DependencyCollector" Version="2.6.1" />
2222
<PackageReference Include="Microsoft.ApplicationInsights.Kubernetes" Version="1.0.0-beta8" />
2323
<PackageReference Include="Microsoft.ApplicationInsights.ServiceFabric" Version="2.1.1-beta1" />
24-
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="2.2.0-preview3-35497" />
25-
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0-preview3-35497" />
24+
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="2.2.0" />
25+
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
2626
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="4.2.1" />
27-
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="2.2.0-preview3-35497" />
27+
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="2.2.0" />
2828
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.6" />
2929
<PackageReference Include="Swashbuckle.AspNetCore" Version="3.0.0" />
3030
<PackageReference Include="Microsoft.AspNetCore.HealthChecks" Version="1.0.0" />

src/Services/Basket/Basket.API/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM microsoft/dotnet:2.2.0-preview3-aspnetcore-runtime AS base
1+
FROM microsoft/dotnet:2.2.0-aspnetcore-runtime AS base
22
WORKDIR /app
33
EXPOSE 80
44

5-
FROM microsoft/dotnet:2.2.100-preview3-sdk AS build
5+
FROM microsoft/dotnet:2.2.100-sdk AS build
66
WORKDIR /src
77
COPY . .
88
WORKDIR /src/src/Services/Basket/Basket.API

src/Services/Basket/Basket.FunctionalTests/Basket.FunctionalTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<ItemGroup>
2020
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
21-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.2.0-preview3-35497" />
21+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.2.0" />
2222
<PackageReference Include="xunit" Version="2.3.1" />
2323
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
2424
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />

src/Services/Catalog/Catalog.API/Catalog.API.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
<PackageReference Include="Microsoft.ApplicationInsights.Kubernetes" Version="1.0.0-beta8" />
4646
<PackageReference Include="Microsoft.ApplicationInsights.ServiceFabric" Version="2.1.1-beta1" />
4747
<PackageReference Include="Microsoft.AspNetCore.HealthChecks" Version="1.0.0" />
48-
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="2.2.0-preview3-35497" />
49-
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="2.2.0-preview3-35497" />
50-
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0-preview3-35497" />
48+
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="2.2.0" />
49+
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="2.2.0" />
50+
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
5151
<PackageReference Include="Swashbuckle.AspNetCore" Version="3.0.0" />
5252
<PackageReference Include="System.IO.Compression.ZipFile" Version="4.3.0" />
5353
</ItemGroup>

0 commit comments

Comments
 (0)