build HAProxy inside a container
This commit is contained in:
parent
0a96f87e83
commit
be03cabfa2
|
@ -0,0 +1,16 @@
|
||||||
|
FROM debian:9
|
||||||
|
|
||||||
|
RUN apt update
|
||||||
|
RUN apt install -y \
|
||||||
|
ca-certificates \
|
||||||
|
libsystemd-dev \
|
||||||
|
liblua5.3-dev \
|
||||||
|
libpcre3-dev \
|
||||||
|
zlib1g-dev \
|
||||||
|
libc6-dev \
|
||||||
|
make \
|
||||||
|
wget \
|
||||||
|
gcc
|
||||||
|
|
||||||
|
RUN mkdir /workspace
|
||||||
|
WORKDIR /workspace
|
Loading…
Reference in New Issue