Skip to content
Open
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 .github/workflows/build-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.301
dotnet-version: 10.0.400
- name: Build Reason
env:
GITHUB_EVENT: ${{ toJson(github) }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.301
dotnet-version: 10.0.400

- name: Install Aspire CLI
run: |
export PATH="$HOME/.dotnet/tools:$PATH"
if dotnet tool list --global | grep -Eiq '^aspire\.cli[[:space:]]'; then
dotnet tool update --global Aspire.Cli --version 13.4.4
dotnet tool update --global Aspire.Cli --version 13.4.6
else
dotnet tool install --global Aspire.Cli --version 13.4.4
dotnet tool install --global Aspire.Cli --version 13.4.6
fi
echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH"
aspire --version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/elasticsearch-docker-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.301
dotnet-version: 10.0.400
- name: Build Reason
env:
GITHUB_EVENT: ${{ toJson(github) }}
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0.301 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0.400 AS build
ARG MinVerVersionOverride
WORKDIR /app

Expand Down Expand Up @@ -40,7 +40,7 @@ RUN dotnet publish -c Release -o out --no-build

# job

FROM mcr.microsoft.com/dotnet/aspnet:10.0.9 AS job
FROM mcr.microsoft.com/dotnet/aspnet:10.0.11 AS job
WORKDIR /app
COPY --from=job-publish /app/src/Exceptionless.Job/out ./

Expand All @@ -59,7 +59,7 @@ RUN dotnet publish -c Release -o out --no-build /p:SkipSpaPublish=true

# api

FROM mcr.microsoft.com/dotnet/aspnet:10.0.9 AS api
FROM mcr.microsoft.com/dotnet/aspnet:10.0.11 AS api
WORKDIR /app
COPY --from=api-publish /app/src/Exceptionless.Web/out ./

Expand All @@ -77,7 +77,7 @@ RUN dotnet publish -c Release -o out --no-build

# app

FROM mcr.microsoft.com/dotnet/aspnet:10.0.9 AS app
FROM mcr.microsoft.com/dotnet/aspnet:10.0.11 AS app

WORKDIR /app
COPY --from=app-publish /app/src/Exceptionless.Web/out ./
Expand Down Expand Up @@ -151,7 +151,7 @@ USER elasticsearch

RUN wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh && \
chmod +x dotnet-install.sh && \
./dotnet-install.sh --version 10.0.9 --runtime aspnetcore && \
./dotnet-install.sh --version 10.0.11 --runtime aspnetcore && \
rm dotnet-install.sh

EXPOSE 8080 9200
Expand Down
Loading