evanmiller / fmptools

Convert FileMaker Pro databases to several convenient formats 📂
MIT License
65 stars 10 forks source link

Dockerfile to install fmptools #12

Closed tintamarre closed 1 year ago

tintamarre commented 1 year ago

I wrote a small Dockerfile to install fmptools.

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. 🙂

tintamarre commented 1 year ago

Closing because this is not an issue.