diff options
author | bloodstalker <thabogre@gmail.com> | 2020-10-11 04:22:59 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-10-11 04:22:59 +0000 |
commit | 0334e529867832d5da0cf6b9e2376f0842bd891b (patch) | |
tree | 4a1bf4582bc4f0013a7c0e5ce067a7fcf3c2269c /matterhorn/Dockerfile | |
parent | more upates for gotty:fixed up w3m (diff) | |
download | dockerimages-0334e529867832d5da0cf6b9e2376f0842bd891b.tar.gz dockerimages-0334e529867832d5da0cf6b9e2376f0842bd891b.zip |
centos7 image for matterhorn
Diffstat (limited to 'matterhorn/Dockerfile')
-rw-r--r-- | matterhorn/Dockerfile | 10 |
1 files changed, 10 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 |