feat(release): prepare 1.1.0 candidate

This commit is contained in:
Yun Chan 2026-08-29 18:33:45 +09:00
parent 5a34f66981
commit 5205dcdfa9
736 changed files with 115667 additions and 12203 deletions

View file

@ -1,5 +1,5 @@
# Multi-stage Docker build for D3RO Voice C# .NET API Backend & BackOffice
FROM mcr.microsoft.com/dotnet/sdk:10.0-preview AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0.302-noble AS build
WORKDIR /src
COPY D3ROVoice.Api.csproj ./
@ -8,7 +8,7 @@ RUN dotnet restore
COPY . ./
RUN dotnet publish -c Release -o /app/out
FROM mcr.microsoft.com/dotnet/aspnet:10.0-preview AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:10.0.10-noble AS runtime
WORKDIR /app
# Create persistent storage directory for SQLite database
@ -24,4 +24,3 @@ ENV DATA_DIR=/app/data
VOLUME ["/app/data"]
ENTRYPOINT ["dotnet", "D3ROVoice.Api.dll"]