-
Notifications
You must be signed in to change notification settings - Fork 602
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Container Linux Docker Net 7.0 #702
Comments
Hello! Here is an example of a correct Dockerfile:
Best regards, |
Hi @BogdanStegachev , unfortunately that's not my problem. =( |
"Exception in BuildFontRuns() with original length of 35 now 35, style run count 1, font run count 0, direction overrides: False." |
I am sending you a test application using FastReport.Core.Skia Demo version 2024.2.9 and Docker below Application: https://drive.google.com/file/d/1FOxqLbEIa28Kl9El9EDbYEH90hkgtA_R/view?usp=sharing Best regards, |
It worked correctly. The only question that is marked as "DEMO". Do you know of any free solutions? Or just buying the license itself? Thanks @BogdanStegachev |
Hello! You will also be able to add libgdiplus installation and follow the test Dockerfile above to solve your problem, I send you an example of installing libgdiplus in Dockerfile :
Best regards, |
I'm testing Container Linux, and when I go up and try to test my application, it gives the following error with FastReport in the report.Prepare() step;
"Exception in BuildFontRuns() with original length of 35 now 35, style run count 1, font run count 0, direction overrides: False.
Small part of the dockerfile
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
RUN apt-get update
&& apt-get install -y wget
&& rm -rf /var/lib/apt/lists/*
RUN echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula
select true | debconf-set-selections
RUN apt-get update
&& wget http://ftp.fr.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.8_all.deb -P /Downloads
&& apt-get install -y /Downloads/ttf-mscorefonts-installer_3.8_all.deb
&& rm /Downloads/ttf-mscorefonts-installer_3.8_all.deb
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
Some help?
The text was updated successfully, but these errors were encountered: