create-pdf-with-netcore icon indicating copy to clipboard operation
create-pdf-with-netcore copied to clipboard

Linux Docker not supported

Open yogeshnagarro opened this issue 5 years ago • 1 comments

This solution not create PDF file on Linux Docker container.

yogeshnagarro avatar May 16 '20 12:05 yogeshnagarro

Add to your dockerfile

RUN apt-get update -qq && apt-get -y install libgdiplus libc6-dev

like this

FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base WORKDIR /app RUN apt-get update -qq && apt-get -y install libgdiplus libc6-dev EXPOSE 80 EXPOSE 443 ...

adbakhram avatar Mar 03 '21 13:03 adbakhram