Skip to content

Commit cfaa340

Browse files
committed
Merge pull request #6 from flyinprogrammer/master
Upgrade to 1.6.1
2 parents 679bb86 + 4389efb commit cfaa340

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
FROM centos:centos7
22
MAINTAINER Marcin Ryzycki [email protected], Przemyslaw Ozgo [email protected]
33

4-
ENV HAPROXY_VERSION=1.5.14
4+
ENV HAPROXY_MJR_VERSION=1.6
5+
ENV HAPROXY_VERSION=1.6.1
56

67
RUN \
78
yum install -y epel-release && \
89
yum install -y inotify-tools wget tar gzip make gcc pcre-devel openssl-devel && \
9-
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 && \
1011
mkdir -p /usr/local/haproxy && \
1112
tar -zxvf /tmp/haproxy.tgz -C /usr/local/haproxy/ --strip-components 1 && \
1213
rm -f /tmp/haproxy.tgz && \

0 commit comments

Comments
 (0)