1

I want to deploy a pdf generator that is dependent on ABCpdf (.net core) on a Linux container. the docker image file will build successfully but when we run the container I have the following exception

enter image description here

any idea how we can solve this issue?

Mahdi
  • 1,777
  • 4
  • 24
  • 48

1 Answers1

1

The abcpdf documentation states:

There are variants of ABCpdf for both .NET Core and .NET Standard.

These variants are currently for Windows only and there are a few features which are disabled because they are not supported by the .NET Core runtime.

Therefore you could run it in a Windows container but not a Linux one.

Ross Presser
  • 6,027
  • 1
  • 34
  • 66