28 lines
1.1 KiB
Docker
28 lines
1.1 KiB
Docker
# 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 alpine:edge
|
|
MAINTAINER Prashanth B <beeps@google.com>
|
|
|
|
RUN apk add -U bash curl socat haproxy && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
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"]
|