From 9a54f29f7bfbb26ab5bd2552417b313e7ef8f8b5 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Sat, 26 Jul 2025 09:28:26 -0700 Subject: [PATCH] Fix build naming --- .env_Template | 9 --------- Dockerfile | 3 +-- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.env_Template b/.env_Template index 8158633..12bd901 100755 --- a/.env_Template +++ b/.env_Template @@ -1,12 +1,3 @@ -#################### -## Authentication ## -#################### - -# Random secret token for encrypting JWT contents [ Has to match web clients ] -JWT_Secret= - - - ############## ## Database ## ############## diff --git a/Dockerfile b/Dockerfile index 1182a05..cc260e6 100755 --- a/Dockerfile +++ b/Dockerfile @@ -62,7 +62,6 @@ RUN apt update && apt upgrade -y && \ 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 @@ -80,4 +79,4 @@ COPY --from=build-backend /app/publish ./ # Copy in the client COPY --from=build-frontend /debug/wwwroot ./wwwroot/ -ENTRYPOINT ["dotnet", "MistoxWebsite.Server.dll", "--url", "http://localhost:5000"] \ No newline at end of file +ENTRYPOINT ["dotnet", "Server.dll", "--url", "http://localhost:5000"] \ No newline at end of file