Skip to content

Commit

Permalink
Update dependency Microsoft.AspNetCore.App to v2.2.7 (#700)
Browse files Browse the repository at this point in the history
* Update dependency Microsoft.AspNetCore.App to v2.2.7

* Align build

* Align Dockerfile
  • Loading branch information
renovate[bot] authored and tomkerkhove committed Sep 14, 2019
1 parent ee6f7c9 commit cebf4f9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build/azure-devops/agents-scraper-release-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resources:
trigger: none
pr: none
variables:
DotNet.SDK.Version: '2.2.401'
DotNet.SDK.Version: '2.2.402'
Image.Name: 'tomkerkhove/promitor-agent-scraper'
Image.TaggedName: '$(Image.Name):$(Image.Version)'
Release.TagName: '$(Build.BuildNumber)'
Expand Down
2 changes: 1 addition & 1 deletion build/azure-devops/agents-scraper-release-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resources:
trigger: none
pr: none
variables:
DotNet.SDK.Version: '2.2.401'
DotNet.SDK.Version: '2.2.402'
Image.Name: 'tomkerkhove/promitor-agent-scraper'
Image.TaggedName: '$(Image.Name):$(Image.Version)'
Release.TagName: '$(Build.BuildNumber)'
Expand Down
2 changes: 1 addition & 1 deletion build/azure-devops/scraper-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pr:
- charts/promitor-agent-scraper/*
- deploy/automation/docker-hub/ci/* # Add Docker Hub bot here to trigger it for testing sake
variables:
DotNet.SDK.Version: '2.2.401'
DotNet.SDK.Version: '2.2.402'
DotNet.Configuration: 'release'
Image.Name: 'tomkerkhove/promitor-agent-scraper-ci'
Image.TaggedName: '$(Image.Name):$(Build.BuildNumber)'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<ItemGroup>
<PackageReference Include="Guard.NET" Version="1.2.0" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.6" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.7" />
<PackageReference Include="Microsoft.Azure.Management.Fluent" Version="1.25.0" />
<PackageReference Include="Microsoft.Azure.Management.Monitor.Fluent" Version="1.25.0" />
<PackageReference Include="Microsoft.Data.OData" Version="5.8.4" />
Expand Down
4 changes: 2 additions & 2 deletions src/Promitor.Scraper.Host/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/core/sdk:2.2.401-alpine3.9 AS build
FROM mcr.microsoft.com/dotnet/core/sdk:2.2.402-alpine3.9 AS build
WORKDIR /src
COPY Promitor.Core/* Promitor.Core/
COPY Promitor.Core.Configuration/* Promitor.Core.Configuration/
Expand All @@ -10,7 +10,7 @@ COPY Promitor.Integrations.AzureStorage/* Promitor.Integrations.AzureStorage/
COPY Promitor.Scraper.Host/* Promitor.Scraper.Host/
RUN dotnet publish Promitor.Scraper.Host/Promitor.Scraper.Host.csproj --configuration release -o app

FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.6-alpine3.9 as runtime
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.7-alpine3.9 as runtime
WORKDIR /app
COPY --from=build /src/Promitor.Scraper.Host/app .

Expand Down
2 changes: 1 addition & 1 deletion src/Promitor.Scraper.Host/Promitor.Scraper.Host.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<PackageReference Include="AutoMapper" Version="9.0.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
<PackageReference Include="CronScheduler.AspNetCore" Version="1.1.2" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.6" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.7" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.3" />
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="1.6.0" />
<PackageReference Include="Prometheus.Client.AspNetCore" Version="3.0.1" />
Expand Down

0 comments on commit cebf4f9

Please sign in to comment.