From 4290f919d622b45d924451bd2636fe6ac3262ff5 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 16 Jul 2019 08:33:56 -0500 Subject: [PATCH] rm -o flag on build --- src/FilterLists.Agent/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Agent/Dockerfile b/src/FilterLists.Agent/Dockerfile index ea4486fee..8845bf2ec 100644 --- a/src/FilterLists.Agent/Dockerfile +++ b/src/FilterLists.Agent/Dockerfile @@ -16,7 +16,7 @@ RUN dotnet restore # build COPY src/FilterLists.Agent/. . -RUN dotnet build -c Release -r linux-musl-x64 -o out --no-restore +RUN dotnet build -c Release -r linux-musl-x64 --no-restore # init Agent.Tests FROM build AS test-agent