Compare commits

...

2 Commits

Author SHA1 Message Date
hz
5fbc4a88ec Merge branch 'main' of https://git.ranaze.com/null/promiscuity into main
Some checks failed
Deploy Promiscuity Character API / deploy (push) Has been cancelled
k8s smoke test / test (push) Has been cancelled
Deploy Promiscuity Auth API / deploy (push) Has been cancelled
2026-01-07 17:32:29 -06:00
hz
581734d740 Updating dotnet version 2026-01-07 17:32:15 -06:00
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /src
# Copy project file first to take advantage of Docker layer caching
@ -9,7 +9,7 @@ RUN dotnet restore "AuthApi.csproj"
COPY . .
RUN dotnet publish "AuthApi.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS final
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
WORKDIR /app
COPY --from=build /app/publish .

View File

@ -19,10 +19,10 @@ spec:
image: promiscuity-auth:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 5000
- containerPort: 8080
readinessProbe:
httpGet:
path: /healthz
port: 5000
port: 8080
initialDelaySeconds: 5
periodSeconds: 10