diff options
-rw-r--r-- | matterhorn/Dockerfile | 10 | ||||
-rwxr-xr-x | matterhorn/run.sh | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/matterhorn/Dockerfile b/matterhorn/Dockerfile new file mode 100644 index 0000000..5839ccc --- /dev/null +++ b/matterhorn/Dockerfile @@ -0,0 +1,10 @@ +FROM centos:7 +RUN yum update +RUN yum install tmux wget tar bzip2 -y + +RUN mkdir devi +WORKDIR /devi +RUN wget https://github.com/matterhorn-chat/matterhorn/releases/download/50200.10.2/matterhorn-50200.10.2-centos-7-x86_64.tar.bz2 +RUN tar -xvf matterhorn-50200.10.2-centos-7-x86_64.tar.bz2 + +EXPOSE 9000 diff --git a/matterhorn/run.sh b/matterhorn/run.sh new file mode 100755 index 0000000..7ea0781 --- /dev/null +++ b/matterhorn/run.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +docker run --network="host" -it --entrypoint bash $1 |