Dockerized cli of https://github.com/amueller/word_cloud
94
Docker image containing the wordcloud_cli binary of https://github.com/amueller/word_cloud
docker run --rm -v $(pwd):/usr/src docker.io/mickilous/word_cloud_cli --text my_text.txt --imagefile my_image.png
FROM python:3.7
LABEL maintainer="[email protected]"
RUN pip install wordcloud matplotlib
WORKDIR /usr/src
ENTRYPOINT [ "wordcloud_cli" ]
Content type
Image
Digest
Size
395.4 MB
Last updated
almost 5 years ago
docker pull mickilous/word_cloud_cli