# Copyright 2015 The Kubernetes Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


FROM gcr.io/google_containers/ubuntu-slim:0.1
MAINTAINER Prashanth B <beeps@google.com>

RUN apt-get update && apt-get install -y --no-install-recommends \
  bash curl socat haproxy ca-certificates liblua5.3-0 && \
  curl -o /tmp/haproxy.deb http://mirrors.kernel.org/ubuntu/pool/main/h/haproxy/haproxy_1.6.3-1_amd64.deb && \
  dpkg -i /tmp/haproxy.deb && \
  apt-get clean -y && \
  rm -rf /var/lib/apt/lists/* /tmp/*

RUN mkdir -p /etc/haproxy/errors /var/state/haproxy
RUN for ERROR_CODE in 400 403 404 408 500 502 503 504;do curl -sSL -o /etc/haproxy/errors/$ERROR_CODE.http \
	https://raw.githubusercontent.com/haproxy/haproxy-1.5/master/examples/errorfiles/$ERROR_CODE.http;done

ADD haproxy.cfg /etc/haproxy/haproxy.cfg

CMD ["/usr/sbin/haproxy", "-db", "-f", "/etc/haproxy/haproxy.cfg"]
