From b6d66877078d3f240b4f92de1271879d4aaf2fa7 Mon Sep 17 00:00:00 2001 From: Derek S <44935661+Derek-R-S@users.noreply.github.com> Date: Thu, 8 Apr 2021 05:34:52 -0500 Subject: [PATCH] Finished testing --- ServerProject-DONT-IMPORT-INTO-UNITY/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ServerProject-DONT-IMPORT-INTO-UNITY/Dockerfile b/ServerProject-DONT-IMPORT-INTO-UNITY/Dockerfile index 99e3b54..151629c 100644 --- a/ServerProject-DONT-IMPORT-INTO-UNITY/Dockerfile +++ b/ServerProject-DONT-IMPORT-INTO-UNITY/Dockerfile @@ -1,7 +1,7 @@ FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS builder WORKDIR /lrm COPY . . -ARG BUILD_MODE="Debug" +ARG BUILD_MODE="Release" RUN dotnet publish \ --output /build/ \ --configuration $BUILD_MODE \