mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
7eea00edf3
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
27 lines
482 B
Docker
27 lines
482 B
Docker
FROM debian:stretch
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
ca-certificates \
|
|
gcc \
|
|
git \
|
|
libncurses5 \
|
|
libncurses5-dev \
|
|
libncursesw5 \
|
|
libncursesw5-dev \
|
|
make \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone --depth 1 --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" ]
|