Fix build naming
Docker Build and Release Upload / build (push) Successful in 1m23s

This commit is contained in:
2025-07-26 09:28:26 -07:00
parent eef85b872a
commit 9a54f29f7b
2 changed files with 1 additions and 11 deletions
-9
View File
@@ -1,12 +1,3 @@
####################
## Authentication ##
####################
# Random secret token for encrypting JWT contents [ Has to match web clients ]
JWT_Secret=
############## ##############
## Database ## ## Database ##
############## ##############
+1 -2
View File
@@ -62,7 +62,6 @@ RUN apt update && apt upgrade -y && \
openssl genrsa -out private_key.pem 2048 && \ openssl genrsa -out private_key.pem 2048 && \
openssl rsa -in private_key.pem -pubout -out public_key.pem openssl rsa -in private_key.pem -pubout -out public_key.pem
WORKDIR /app WORKDIR /app
ENV ASPNETCORE_HTTP_PORTS=5000 ENV ASPNETCORE_HTTP_PORTS=5000
@@ -80,4 +79,4 @@ COPY --from=build-backend /app/publish ./
# Copy in the client # Copy in the client
COPY --from=build-frontend /debug/wwwroot ./wwwroot/ COPY --from=build-frontend /debug/wwwroot ./wwwroot/
ENTRYPOINT ["dotnet", "MistoxWebsite.Server.dll", "--url", "http://localhost:5000"] ENTRYPOINT ["dotnet", "Server.dll", "--url", "http://localhost:5000"]