From 3cb03e8ffd875f38075d12088beddf75fd4f2685 Mon Sep 17 00:00:00 2001 From: Mateleo Date: Fri, 22 Nov 2024 11:36:49 +0100 Subject: [PATCH] test dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c53bdfb..f288929 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN dotnet restore "src/DiIiS-NA/Blizzless.csproj" # Copy the rest of the project files and build the application COPY ["src/", "src/"] WORKDIR "/app/src/DiIiS-NA" -RUN dotnet build "Blizzless.csproj" -c Release --runtime linux-x64 --self-contained true -o /app/publish +RUN dotnet publish "Blizzless.csproj" -c Release --runtime linux-x64 --self-contained true -o /app/publish # Use the official .NET runtime image to run the application FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS runtime