Skip to content

Instantly share code, notes, and snippets.

@cjus
Created March 29, 2024 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjus/ecfffc16d190c010a68fb06952b715ca to your computer and use it in GitHub Desktop.
Save cjus/ecfffc16d190c010a68fb06952b715ca to your computer and use it in GitHub Desktop.
cmatrix container
FROM ubuntu
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
    apt-get install -y cmatrix && \
    rm -rf /var/lib/apt/lists/*

CMD ["cmatrix"]
docker build -t cmatrix .
docker run -it cmatrix:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment