Created
June 23, 2016 10:14
-
-
Save radare/d0895453446eef12886682c52827033f to your computer and use it in GitHub Desktop.
Dockerfile for Toxic 0.7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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