docker build -t fix8 .
Created
September 24, 2024 18:09
-
-
Save jihchi/500616d508a0365ff3bb65944bd074a3 to your computer and use it in GitHub Desktop.
Docker Image: Ubuntu 22.04 + fix8 Community Edition 1.4.3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:22.04 | |
RUN apt-get update \ | |
&& apt-get -y --no-install-recommends install \ | |
wget ca-certificates \ | |
build-essential g++ libtool autotools-dev automake \ | |
libpoco-dev | |
WORKDIR /tmp | |
RUN wget https://github.com/fix8/fix8/archive/1.4.3.tar.gz | |
RUN tar -zxvf 1.4.3.tar.gz | |
WORKDIR /tmp/fix8-1.4.3 | |
RUN ./bootstrap | |
RUN ./configure | |
RUN make | |
RUN make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment