FROM registry.yandex.net/ubuntu:xenial
RUN apt-get update && apt-get install -y -q0 --no-install-recommends \
    python \
    zookeeper \
    zookeeperd \
    zookeeper-bin \
    python-requests \
    python-flask \
    strace \
    openssh-client \
    telnet \
    bind9-host \
    tcpdump \
    netcat-openbsd

COPY juggler.py /
COPY start.sh /

CMD /start.sh
