From 8ff5042bfb7fd73b09e73e6adb81ab95f708cab5 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 12 Jan 2021 17:42:03 +0000 Subject: [PATCH] chore(deps): update .net core docker containers docker tags --- src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux | 4 ++-- src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows | 4 ++-- src/Promitor.Agents.Scraper/Dockerfile.linux | 4 ++-- src/Promitor.Agents.Scraper/Dockerfile.windows | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux index bd3699f88..69413f476 100644 --- a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux +++ b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.404-alpine3.12 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.405-alpine3.12 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/ @@ -7,7 +7,7 @@ COPY Promitor.Agents.Core/* Promitor.Agents.Core/ COPY Promitor.Core/* Promitor.Core/ RUN dotnet publish Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj --configuration release --output /app /p:Version=$VERSION -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.10-alpine3.12 AS runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.11-alpine3.12 AS runtime WORKDIR /app ENV PROMITOR_CONFIG_FOLDER="/config/" COPY --from=build /app . diff --git a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows index 76c00a524..bd67fadcd 100644 --- a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows +++ b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.404 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.405 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/ @@ -7,7 +7,7 @@ COPY Promitor.Agents.Core/* Promitor.Agents.Core/ COPY Promitor.Core/* Promitor.Core/ RUN dotnet publish Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj --configuration release --output /app /p:Version=%VERSION% -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.10 AS runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.11 AS runtime WORKDIR /app ENV PROMITOR_CONFIG_FOLDER="c:/config/" COPY --from=build /app . diff --git a/src/Promitor.Agents.Scraper/Dockerfile.linux b/src/Promitor.Agents.Scraper/Dockerfile.linux index 81c11f1fd..9024d4e2c 100644 --- a/src/Promitor.Agents.Scraper/Dockerfile.linux +++ b/src/Promitor.Agents.Scraper/Dockerfile.linux @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.404-alpine3.12 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.405-alpine3.12 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Core/* Promitor.Core/ @@ -14,7 +14,7 @@ COPY Promitor.Integrations.Sinks.Prometheus/* Promitor.Integrations.Sinks.Promet COPY Promitor.Agents.Scraper/* Promitor.Agents.Scraper/ RUN dotnet publish Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj --configuration release --output app /p:Version=$VERSION -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.10-alpine3.12 as runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.11-alpine3.12 as runtime WORKDIR /app ENV PROMITOR_CONFIG_FOLDER="/config/" diff --git a/src/Promitor.Agents.Scraper/Dockerfile.windows b/src/Promitor.Agents.Scraper/Dockerfile.windows index 0f854fa45..3ad060ae7 100644 --- a/src/Promitor.Agents.Scraper/Dockerfile.windows +++ b/src/Promitor.Agents.Scraper/Dockerfile.windows @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.404 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.405 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Core/* Promitor.Core/ @@ -14,7 +14,7 @@ COPY Promitor.Integrations.Sinks.Prometheus/* Promitor.Integrations.Sinks.Promet COPY Promitor.Agents.Scraper/* Promitor.Agents.Scraper/ RUN dotnet publish Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj --configuration release --output app /p:Version=%VERSION% -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.10 as runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.11 as runtime WORKDIR /app ENV PROMITOR_CONFIG_FOLDER="c:/config/"