Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dotnet #545

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.402"
"version": "8.0.403"
}
}
4 changes: 2 additions & 2 deletions src/Keda.Scaler.DurableTask.AzureStorage/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG COPY=false

# See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/sdk:8.0.402-cbl-mariner2.0-amd64@sha256:5ccee344ce708fadab98dd7b561a15495cc3a9ac7aa51d3b03efe45e24cabd80 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.403-cbl-mariner2.0-amd64@sha256:398e813ac6d334f47703e1fd958a14e2e19e627f3ff3cdc0eabf0b03fbb9f0c3 AS build
ARG BUILD_CONFIGURATION=Release
ARG CONTINUOUS_INTEGRATION_BUILD=false
ARG ASSEMBLY_VERSION=1.0.0
Expand Down Expand Up @@ -39,7 +39,7 @@ COPY ${PUBLISH_DIRECTORY} /app

FROM publish-copy-${COPY} AS publish-app

FROM mcr.microsoft.com/dotnet/aspnet:8.0.8-cbl-mariner2.0-distroless-amd64@sha256:add22205c615422c42b8e728a54b597bbe413f6ea94c0a4599d70f7b1865d4ef AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:8.0.10-cbl-mariner2.0-distroless-amd64@sha256:cb8198055fcbbdd1630efcf403c304b698e89378d2457ea6937ab9221e5e5637 AS runtime
ENV ASPNETCORE_URLS=http://+:8080 \
DOTNET_EnableDiagnostics=0 \
DOTNET_USE_POLLING_FILE_WATCHER=true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/sdk:8.0.402-cbl-mariner2.0-amd64@sha256:5ccee344ce708fadab98dd7b561a15495cc3a9ac7aa51d3b03efe45e24cabd80 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.403-cbl-mariner2.0-amd64@sha256:398e813ac6d334f47703e1fd958a14e2e19e627f3ff3cdc0eabf0b03fbb9f0c3 AS build
ARG BUILD_CONFIGURATION=Release
COPY [".editorconfig", ".globalconfig", "Directory.Build.props", "Directory.Packages.props", "global.json", "NuGet.config", "/example/"]
COPY ["./tests/Keda.Scaler.Functions.Worker.DurableTask.Examples/", "/example/src/"]
Expand Down