Skip to content

Commit

Permalink
Update Dotnet (#3411)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Apr 11, 2024
1 parent 031b936 commit 22eba73
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Define the "runtime" image which will run DICOMcast
FROM mcr.microsoft.com/dotnet/aspnet:8.0.3-alpine3.18-amd64@sha256:269b84c8f0704adcc8ae84f51057f9b5a768ac02965afa42e43bd3ff61de980a AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:8.0.4-alpine3.18-amd64@sha256:fdbcc8cebb402f603406329c5a259db93026a69090817eec8eebd9bd21d0efdb AS runtime
USER $APP_UID

# Copy the DICOMcast project and build it
FROM mcr.microsoft.com/dotnet/sdk:8.0.203-alpine3.18-amd64@sha256:88b2081be6c081e4f4a5cbf4d3317794ac01be3f15bc9afac4fe88c41d85521d AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.204-alpine3.18-amd64@sha256:5374b4d70e4c6b357c5cc08276f8c046bb67339902ccb89e39242333a05305ad AS build
ARG BUILD_CONFIGURATION=Release
ARG CONTINUOUS_INTEGRATION_BUILD=false
WORKDIR /dicom-server
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.203"
"version": "8.0.204"
}
}
2 changes: 1 addition & 1 deletion src/Microsoft.Health.Dicom.Functions.App/Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ USER nonroot
EXPOSE 8080

# Copy the DICOM Server repository and build the Azure Functions project
FROM mcr.microsoft.com/dotnet/sdk:8.0.203-alpine3.18-amd64@sha256:88b2081be6c081e4f4a5cbf4d3317794ac01be3f15bc9afac4fe88c41d85521d AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.204-alpine3.18-amd64@sha256:5374b4d70e4c6b357c5cc08276f8c046bb67339902ccb89e39242333a05305ad AS build
ARG BUILD_CONFIGURATION=Release
ARG CONTINUOUS_INTEGRATION_BUILD=false

Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.Health.Dicom.Web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.

# Define the "runtime" image which will run the DICOM Server
FROM mcr.microsoft.com/dotnet/aspnet:8.0.3-alpine3.18-amd64@sha256:269b84c8f0704adcc8ae84f51057f9b5a768ac02965afa42e43bd3ff61de980a AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:8.0.4-alpine3.18-amd64@sha256:fdbcc8cebb402f603406329c5a259db93026a69090817eec8eebd9bd21d0efdb AS runtime
RUN set -x && \
# See https://www.abhith.net/blog/docker-sql-error-on-aspnet-core-alpine/
apk update && \
Expand All @@ -15,7 +15,7 @@ EXPOSE 8080
USER $APP_UID

# Copy the DICOM Server project and build it
FROM mcr.microsoft.com/dotnet/sdk:8.0.203-alpine3.18-amd64@sha256:88b2081be6c081e4f4a5cbf4d3317794ac01be3f15bc9afac4fe88c41d85521d AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.204-alpine3.18-amd64@sha256:5374b4d70e4c6b357c5cc08276f8c046bb67339902ccb89e39242333a05305ad AS build
ARG BUILD_CONFIGURATION=Release
ARG CONTINUOUS_INTEGRATION_BUILD=false

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0.203-alpine3.18-amd64@sha256:88b2081be6c081e4f4a5cbf4d3317794ac01be3f15bc9afac4fe88c41d85521d AS installer-env
FROM mcr.microsoft.com/dotnet/sdk:8.0.204-alpine3.18-amd64@sha256:5374b4d70e4c6b357c5cc08276f8c046bb67339902ccb89e39242333a05305ad AS installer-env

RUN set -x && \
apk update && \
Expand Down

0 comments on commit 22eba73

Please sign in to comment.