docker_ssl_endpoint/Dockerfile

17 lines
226 B
Docker
Raw Normal View History

2016-04-03 09:08:55 +02:00
FROM debian
MAINTAINER Joachim Lusiardi
RUN apt-get update; \
apt-get install -y haproxy;
ADD haproxy.conf /haproxy.conf
ADD start.sh /start.sh
RUN chmod +x /start.sh
VOLUME ["/data"]
EXPOSE 443
ENTRYPOINT /start.sh