Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Hsu <kennethhsu@gmail.com>2020-08-23 01:24:25 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2020-08-23 01:24:25 +0300
commit201bb53b297d9d18416a038ec3774ad974eac543 (patch)
tree6e08b355c6ea69d243cd7ddec85072f8945e4005 /Installer
parentbcaedebecd1f47b22c4fdec25805667165dd4ad7 (diff)
Add mono-complete to Docker image.
After targeting .NET 4.7.1, some users started encountering errors like: Could not find method '.ctor' due to a type load error: Could not load file or assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. assembly:/opt/duplicati/SharpAESCrypt.exe type:SharpAESCrypt member:(null) The TencentCOS and Tardigrade backends are built on .NET Standard 2.0, and it appears that the dependencies can be awoken even if these backends are not used. This fixes #4289.
Diffstat (limited to 'Installer')
-rw-r--r--Installer/Docker/context/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Installer/Docker/context/Dockerfile b/Installer/Docker/context/Dockerfile
index c93e0d54a..ffcd6e3cc 100644
--- a/Installer/Docker/context/Dockerfile
+++ b/Installer/Docker/context/Dockerfile
@@ -3,6 +3,7 @@ FROM --platform=$TARGETPLATFORM mono:5-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends \
curl \
+ mono-complete \
libmono-sqlite4.0-cil \
libmono-system-drawing4.0-cil \
libmono-system-net-http-webrequest4.0-cil \