From 0df33add0b74ac8b828fb4cf075ef70debb809c0 Mon Sep 17 00:00:00 2001 From: Derek S <44935661+Derek-R-S@users.noreply.github.com> Date: Thu, 6 Jan 2022 14:01:30 -0600 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 647b7e8..e532899 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build-env WORKDIR /lrm COPY ./ServerProject-DONT-IMPORT-INTO-UNITY/* ./ -RUN dotnet publish --runtime ubuntu.20.04-x64 -c Release -o out --no-self-contained +RUN dotnet publish LRM.sln --runtime ubuntu.20.04-x64 -c Release -o out --no-self-contained FROM mcr.microsoft.com/dotnet/aspnet:5.0 WORKDIR /lrm