We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the end, if libncursesw.so is not also found an exception will throwing. To test use this Dockerfile:
libncursesw.so
FROM mcr.microsoft.com/dotnet/runtime:6.0-alpine3.15-amd64 AS base RUN apk add bash icu-libs krb5-libs libgcc libintl libssl1.1 libstdc++ zlib wget xclip && \ apk add libgdiplus --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \ LANG=en_US.UTF-8 \ TERM=xterm-256color WORKDIR /app FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine3.15-amd64 AS build WORKDIR /src COPY ["UICatalog/UICatalog.csproj", "UICatalog/"] COPY ["Terminal.Gui/Terminal.Gui.csproj", "Terminal.Gui/"] RUN dotnet restore "UICatalog/UICatalog.csproj" COPY . . WORKDIR "/src/UICatalog" RUN dotnet build "UICatalog.csproj" -c Debug -o /app/build FROM build AS publish RUN dotnet publish "UICatalog.csproj" -c Debug -o /app/publish FROM base AS final WORKDIR /app COPY --from=publish /app/publish . ENTRYPOINT ["dotnet", "UICatalog.dll"]
The text was updated successfully, but these errors were encountered:
Fixes gui-cs#1830. If "libcoreclr.so" is not present then "libncurses…
2f9745c
…w.so" will be used.
935f039
No branches or pull requests
In the end, if
libncursesw.so
is not also found an exception will throwing. To test use this Dockerfile:The text was updated successfully, but these errors were encountered: