diff --git a/ServerProject-DONT-IMPORT-INTO-UNITY/Dockerfile b/ServerProject-DONT-IMPORT-INTO-UNITY/Dockerfile index 20594cd..99e3b54 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="Release" +ARG BUILD_MODE="Debug" RUN dotnet publish \ --output /build/ \ --configuration $BUILD_MODE \ @@ -12,4 +12,4 @@ WORKDIR /lrm COPY --from=builder /build/ . ENV LRM_CONFIG_PATH="/config/config.json" CMD [ "./LRM" ] -ENTRYPOINT [ "./LRM" ] \ No newline at end of file +ENTRYPOINT [ "./LRM" ]