Skip to content

Instantly share code, notes, and snippets.

@jihchi
Created September 24, 2024 18:09
Show Gist options
  • Save jihchi/500616d508a0365ff3bb65944bd074a3 to your computer and use it in GitHub Desktop.
Save jihchi/500616d508a0365ff3bb65944bd074a3 to your computer and use it in GitHub Desktop.
Docker Image: Ubuntu 22.04 + fix8 Community Edition 1.4.3

Getting Started

docker build -t fix8 .
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