core icon indicating copy to clipboard operation
core copied to clipboard

`dotnetsay` does not output any of the input text when used in a container

Open lbussell opened this issue 5 months ago • 0 comments

I can't get the dotnetsay tool (https://www.nuget.org/packages/dotnetsay) to work in Docker. Here's what I've tried:

Repro steps

Running directly from the Docker CLI:

docker run --rm mcr.icrosoft.com/dotnet/nightly/sdk:10.0-preview dnx --yes dotnetsay hello world

Running from a Dockerfile build:

FROM mcr.microsoft.com/dotnet/nightly/sdk:10.0-preview AS build
RUN dnx --yes dotnetsay hello world

# This also doesn't work:
RUN ["dnx", "--yes", "dotnetsay", "hello world"]

Observed behavior

Building the Dockerfile with docker build --no-cache --progress=plain ., dotnet bot doesn't "say" anything, only the ASCII art is output.

Expected behavior

The text "hello world" should be output, followed by some ASCII art of dotnet-bot.

It looks like @richlander owns the package.

lbussell avatar Aug 11 '25 22:08 lbussell