Skip to content

Instantly share code, notes, and snippets.

@radare
Created June 23, 2016 10:14
Show Gist options
  • Save radare/d0895453446eef12886682c52827033f to your computer and use it in GitHub Desktop.
Save radare/d0895453446eef12886682c52827033f to your computer and use it in GitHub Desktop.
Dockerfile for Toxic 0.7
FROM ubuntu
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y wget apt-transport-https
RUN echo deb https://pkg.tox.chat/debian nightly stretch | tee /etc/apt/sources.list.d/tox.list
RUN wget -qO - https://pkg.tox.chat/debian/pkg.gpg.key | apt-key add -
RUN apt-get update
RUN apt-get install -y toxic
CMD ["toxic"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment