Created
January 8, 2024 10:27
-
-
Save antonioabelgc/c80e12619a3907659cd0dee46a8207a5 to your computer and use it in GitHub Desktop.
Docker-HAProxy-SpoaMirror
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 haproxy:2.0 | |
USER root | |
RUN apt update | |
RUN apt install -y autoconf automake build-essential git libcurl4-openssl-dev libev-dev libpthread-stubs0-dev pkg-config | |
RUN git clone https://github.com/haproxytech/spoa-mirror | |
WORKDIR spoa-mirror | |
RUN ./scripts/bootstrap | |
RUN ./configure --enable-debug | |
RUN make all | |
RUN cp ./src/spoa-mirror /usr/local/bin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment