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 #521

Merged
merged 1 commit into from
Sep 3, 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
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.401-cbl-mariner2.0-amd64@sha256:e49d02120133e863da0b95accadc3b8560fbbfc7e9e96712cdb07744708c43bc AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.401-cbl-mariner2.0-amd64@sha256:3c29c190c5f89115daea3792729d5efd32562b115594bfdc3314f30e3c464e02 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:bb5e20f90c021856177a13fd7d1ac74525684a8cfef6731d9176686254316ed9 AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:8.0.8-cbl-mariner2.0-distroless-amd64@sha256:830a930ce4daa0329e9b73b54bc915ab74dfc462f3a703dcd0478fe6818f6161 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.401-cbl-mariner2.0-amd64@sha256:e49d02120133e863da0b95accadc3b8560fbbfc7e9e96712cdb07744708c43bc AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.401-cbl-mariner2.0-amd64@sha256:3c29c190c5f89115daea3792729d5efd32562b115594bfdc3314f30e3c464e02 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
Loading