Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Idnan committed Sep 25, 2018
1 parent 0cf4661 commit aa6d038
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM phusion/baseimage:0.11

ENV MMONIT_VERSION 3.7.1
RUN export LANG=C.UTF-8 && export LC_ALL=en_US.UTF-8

RUN apt-get update

RUN curl -o /tmp/mmonit.tar.gz https://mmonit.com/dist/mmonit-${MMONIT_VERSION}-linux-x64.tar.gz && \
tar -zxvf /tmp/mmonit.tar.gz -C /opt/ && \
mv /opt/mmonit-${MMONIT_VERSION} /opt/mmonit

RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

WORKDIR /opt/mmonit

CMD ["/opt/mmonit/bin/mmonit", "-i"]

0 comments on commit aa6d038

Please sign in to comment.