From 6e2d8c1b0084db550ec9459eff3f3a44bd445da1 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Tue, 14 Nov 2023 12:04:05 -0500 Subject: [PATCH] Add missing call to `dos2unix` in `Dockerfile` --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index decfda6281..dc1526a07c 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -52,7 +52,7 @@ RUN dotnet restore -nowarn:MSB3202,nu1503 -p:RestoreUseSkipNonexistentTargets=fa COPY . . #run dos2unix on tgs.docker.sh so we can build without issue on windows -RUN dos2unix build/tgs.docker.sh +RUN dos2unix build/tgs.docker.sh build/RemoveUnsupportedRuntimes.sh WORKDIR /repo/src/Tgstation.Server.Host.Console RUN dotnet publish -c Release -o /app \