This commit is contained in:
Jessica Frazelle 2015-04-17 06:55:38 -07:00
parent e237120770
commit 01b5babf06
2 changed files with 27 additions and 3 deletions

View File

@ -2,8 +2,7 @@ FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com> MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
ulimit \ libreoffice \
--no-install-recommends --no-install-recommends
ENTRYPOINT [ "ulimit" ] ENTRYPOINT [ "libreoffice" ]
CMD [ "-n" ]

25
mdp/Dockerfile Normal file
View File

@ -0,0 +1,25 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
gcc \
git \
libncurses5 \
libncurses5-dev \
libncursesw5 \
libncursesw5-dev \
make \
--no-install-recommends
RUN git clone --recursive https://github.com/visit1985/mdp.git /src
WORKDIR /src
ENV TERM xterm-256color
ENV DEBUG 1
RUN make \
&& make install
ENTRYPOINT [ "/usr/local/bin/mdp" ]