Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A Dockerfile to build deutex #76

Open
jtheisen opened this issue Jul 19, 2024 · 0 comments
Open

A Dockerfile to build deutex #76

jtheisen opened this issue Jul 19, 2024 · 0 comments

Comments

@jtheisen
Copy link

jtheisen commented Jul 19, 2024

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"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant