-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
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
Docker image #16
Comments
Looks neat. However, I don't have a wealth of experience using, or maintaining docker images. A tad bit busy these days but I'll review and think about this soon. |
@bnutzer I did somewhat the same, but with a smaller (multi-stage) image build: https://hub.docker.com/r/dockvx/ascii-image-converter @TheZoraiz I found out I need to supply
This doesn't happen when converting an image from an URL, so this could be a bug when converting local files? |
Hi,
ascii-image-converter just created the perfect startup banner for our spring boot application. Thanks a bunch!
As already noted, packaging is not trivial. A docker image for ascii-image-converter would make usage easier without the need for any local installation.
I am attaching a Dockerfile that created a well usable image for me.
Dockerfile.ascii-image-converter.txt
(Usage: place in a working directory, such as an empty dir or the local git repo, execute
docker build -t ascii-image-converter -f Dockerfile.ascii-image-converter.txt .
. Usage of resulting image:docker run --rm -it ascii-image-converter <url>
, ordocker run -v $(pwd):/data --rm -it ascii-image-converter /data/<localfile>
).Would you be interested in providing an "official" image on docker hub?
If you prefer the file as a pull request, just give me a note.
The text was updated successfully, but these errors were encountered: