Doom-Utils / deutex

WAD composer for Doom, Heretic, Hexen, and Strife
Other
61 stars 17 forks source link

A Dockerfile to build deutex #76

Open jtheisen opened 1 month ago

jtheisen commented 1 month ago

I had some issues getting this compiled at first, so it may be helpful to some to have a dockerfile handy that builds this:

FROM debian:latest

RUN apt-get update

RUN apt-get install -y \
  build-essential bash git wget unzip zlib1g-dev \
  autoconf automake libtool pkg-config \
  bash-completion

RUN git clone https://github.com/Doom-Utils/deutex.git

WORKDIR /deutex

RUN \
  ./bootstrap && \
  ./configure && \
  make && \
  make install

ENTRYPOINT ["/usr/local/bin/deutex"]

CMD ["-h"]