diff --git a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux index 759563419..74b90adbd 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.407-alpine3.12 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408-alpine3.12 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/ @@ -8,7 +8,7 @@ COPY Promitor.Core/* Promitor.Core/ COPY Promitor.Integrations.Azure/* Promitor.Integrations.Azure/ 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.13-alpine3.12 AS runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.14-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 b12e188ce..aef511369 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.407 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/ @@ -8,7 +8,7 @@ COPY Promitor.Core/* Promitor.Core/ COPY Promitor.Integrations.Azure/* Promitor.Integrations.Azure/ 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.13 AS runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.14 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 18188a18b..2a0ecb9fa 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.407-alpine3.12 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408-alpine3.12 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Core/* Promitor.Core/ @@ -15,7 +15,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.13-alpine3.12 as runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.14-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 c22980462..917e91b73 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.407 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Core/* Promitor.Core/ @@ -15,7 +15,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.13 as runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.14 as runtime WORKDIR /app ENV PROMITOR_CONFIG_FOLDER="c:/config/"