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*; \