Update to RSA encryption instead of hmac
Docker Build and Release Upload / build (push) Successful in 1m28s

This commit is contained in:
2025-07-26 09:17:29 -07:00
parent fe3401a9b3
commit 3c3ed90f5c
3 changed files with 25 additions and 8 deletions
+8
View File
@@ -55,6 +55,14 @@ RUN set -e && \
################
FROM mcr.microsoft.com/dotnet/aspnet:9.0
WORKDIR /certs
RUN apt update && apt upgrade -y && \
apt install -y openssl && \
openssl genrsa -out private_key.pem 2048 && \
openssl rsa -in private_key.pem -pubout -out public_key.pem
WORKDIR /app
ENV ASPNETCORE_HTTP_PORTS=5000