We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 679bb86 + 4389efb commit cfaa340Copy full SHA for cfaa340
Dockerfile
@@ -1,12 +1,13 @@
1
FROM centos:centos7
2
MAINTAINER Marcin Ryzycki [email protected], Przemyslaw Ozgo [email protected]
3
4
-ENV HAPROXY_VERSION=1.5.14
+ENV HAPROXY_MJR_VERSION=1.6
5
+ENV HAPROXY_VERSION=1.6.1
6
7
RUN \
8
yum install -y epel-release && \
9
yum install -y inotify-tools wget tar gzip make gcc pcre-devel openssl-devel && \
- wget -O /tmp/haproxy.tgz http://www.haproxy.org/download/1.5/src/haproxy-${HAPROXY_VERSION}.tar.gz && \
10
+ wget -O /tmp/haproxy.tgz http://www.haproxy.org/download/${HAPROXY_MJR_VERSION}/src/haproxy-${HAPROXY_VERSION}.tar.gz && \
11
mkdir -p /usr/local/haproxy && \
12
tar -zxvf /tmp/haproxy.tgz -C /usr/local/haproxy/ --strip-components 1 && \
13
rm -f /tmp/haproxy.tgz && \
0 commit comments