Closed tintamarre closed 1 year ago
I wrote a small Dockerfile to install fmptools.
Dockerfile
I though it could be useful for others:
FROM debian:12.1 RUN apt-get update && apt-get install -y \ autoconf \ libxlsxwriter-dev \ gettext \ libtool \ libyajl-dev \ sqlite3 \ libsqlite3-0 \ libsqlite3-dev \ git \ make \ build-essential \ && rm -rf /var/lib/apt/lists/* RUN git clone https://github.com/evanmiller/fmptools.git /fmptools WORKDIR /fmptools RUN autoreconf -i -f RUN ./configure RUN make RUN make install RUN ldconfig
It could probably be improved but it is working. 🙂
Closing because this is not an issue.
I wrote a small
Dockerfile
to install fmptools.I though it could be useful for others:
It could probably be improved but it is working. 🙂