From ce85159f003f23efc76bbed2c6918047ff0d02a8 Mon Sep 17 00:00:00 2001 From: toastie_t0ast Date: Thu, 16 Jan 2025 02:25:32 +1300 Subject: [PATCH] Fixed docker build --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 889584a..171bcbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,7 @@ WORKDIR /source/src/EllieBot # Build and publish the EllieBot project, then clean up unnecessary files RUN set -xe; \ dotnet --version; \ + dotnet restore; \ dotnet publish -c Release -o /app --no-restore; \ mv /app/data /app/data_init; \ rm -Rf libopus* libsodium* opus.* runtimes/win* runtimes/osx* runtimes/linux-arm* runtimes/linux-mips*; \