Skip to content

Commit

Permalink
chore(deps): update .net core docker containers docker tags
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Apr 19, 2021
1 parent 9ec0ce9 commit f5f9a69
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux
Original file line number Diff line number Diff line change
@@ -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/
Expand All @@ -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 .
Expand Down
4 changes: 2 additions & 2 deletions src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows
Original file line number Diff line number Diff line change
@@ -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/
Expand All @@ -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 .
Expand Down
4 changes: 2 additions & 2 deletions src/Promitor.Agents.Scraper/Dockerfile.linux
Original file line number Diff line number Diff line change
@@ -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/
Expand All @@ -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/"

Expand Down
4 changes: 2 additions & 2 deletions src/Promitor.Agents.Scraper/Dockerfile.windows
Original file line number Diff line number Diff line change
@@ -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/
Expand All @@ -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/"

Expand Down

0 comments on commit f5f9a69

Please sign in to comment.