Skip to content

Commit

Permalink
Update Container base images (#681)
Browse files Browse the repository at this point in the history
Bumps the update-docker-dependencies group with 1 update in the /AdminApi/src/AdminApi directory: dotnet/aspnet.
Bumps the update-docker-dependencies group with 1 update in the /ConsumerApi directory: dotnet/aspnet.
Bumps the update-docker-dependencies group with 1 update in the /DatabaseMigrator directory: dotnet/sdk.
Bumps the update-docker-dependencies group with 2 updates in the /EventHandlerService/src/EventHandlerService directory: dotnet/sdk and dotnet/aspnet.
Bumps the update-docker-dependencies group with 2 updates in the /Jobs/src/Job.IdentityDeletion directory: dotnet/sdk and dotnet/aspnet.
Bumps the update-docker-dependencies group with 2 updates in the /Modules/Devices/src/Devices.AdminCli directory: dotnet/sdk and dotnet/runtime.


Updates `dotnet/aspnet` from 8.0.5-jammy-chiseled to 8.0.6-jammy-chiseled

Updates `dotnet/aspnet` from 8.0.5-jammy-chiseled to 8.0.6-jammy-chiseled

Updates `dotnet/sdk` from 8.0.300 to 8.0.301

Updates `dotnet/sdk` from 8.0.300 to 8.0.301

Updates `dotnet/aspnet` from 8.0.5-alpine3.18 to 8.0.6-alpine3.18

Updates `dotnet/sdk` from 8.0.300 to 8.0.301

Updates `dotnet/aspnet` from 8.0.5-alpine3.18 to 8.0.6-alpine3.18

Updates `dotnet/sdk` from 8.0.300 to 8.0.301

Updates `dotnet/runtime` from 8.0.5 to 8.0.6

---
updated-dependencies:
- dependency-name: dotnet/aspnet
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
- dependency-name: dotnet/aspnet
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
- dependency-name: dotnet/sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
- dependency-name: dotnet/sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
- dependency-name: dotnet/aspnet
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
- dependency-name: dotnet/sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
- dependency-name: dotnet/aspnet
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
- dependency-name: dotnet/sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
- dependency-name: dotnet/runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: update-docker-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jun 3, 2024
1 parent cb6f150 commit e4b6772
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion AdminApi/src/AdminApi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ RUN dotnet publish /p:UseAppHost=false --no-restore --configuration Release --ou
RUN dotnet publish --configuration Release --output /app/publish/health "HealthCheck/HealthCheck.csproj"

### Final ####
FROM mcr.microsoft.com/dotnet/aspnet:8.0.5-jammy-chiseled
FROM mcr.microsoft.com/dotnet/aspnet:8.0.6-jammy-chiseled

LABEL org.opencontainers.image.source = "https://github.com/nmshd/backbone"
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 CMD [ "dotnet", "/app/health/Backbone.HealthCheck.dll", "--", "http://localhost:8080/health" ]
Expand Down
2 changes: 1 addition & 1 deletion ConsumerApi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ RUN dotnet publish --configuration Release --output /app/publish --no-restore "C
RUN dotnet publish --configuration Release --output /app/publish/health "HealthCheck/HealthCheck.csproj"

### Final ####
FROM mcr.microsoft.com/dotnet/aspnet:8.0.5-jammy-chiseled
FROM mcr.microsoft.com/dotnet/aspnet:8.0.6-jammy-chiseled

LABEL org.opencontainers.image.source = "https://github.com/nmshd/backbone"
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 CMD [ "dotnet", "/app/health/Backbone.HealthCheck.dll", "--", "http://localhost:8080/health" ]
Expand Down
2 changes: 1 addition & 1 deletion DatabaseMigrator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0.5-alpine3.18 AS base
WORKDIR /app

FROM mcr.microsoft.com/dotnet/sdk:8.0.300 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.301 AS build
WORKDIR /src

COPY ["Directory.Build.props", "."]
Expand Down
4 changes: 2 additions & 2 deletions EventHandlerService/src/EventHandlerService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0.5-alpine3.18 AS base
FROM mcr.microsoft.com/dotnet/aspnet:8.0.6-alpine3.18 AS base
WORKDIR /app

FROM mcr.microsoft.com/dotnet/sdk:8.0.300 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.301 AS build
WORKDIR /src

COPY ["Directory.Build.props", "."]
Expand Down
4 changes: 2 additions & 2 deletions Jobs/src/Job.IdentityDeletion/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0.5-alpine3.18 AS base
FROM mcr.microsoft.com/dotnet/aspnet:8.0.6-alpine3.18 AS base
WORKDIR /app

FROM mcr.microsoft.com/dotnet/sdk:8.0.300 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.301 AS build
WORKDIR /src

COPY ["Directory.Build.props", "."]
Expand Down
4 changes: 2 additions & 2 deletions Modules/Devices/src/Devices.AdminCli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/runtime:8.0.5 AS base
FROM mcr.microsoft.com/dotnet/runtime:8.0.6 AS base
WORKDIR /app

FROM mcr.microsoft.com/dotnet/sdk:8.0.300 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.301 AS build
WORKDIR /src

COPY ["Directory.Build.props", "."]
Expand Down

0 comments on commit e4b6772

Please sign in to comment.