buildmaster: add some OpenWrt branding
[buildbot.git] / docker / buildmaster / Dockerfile
index cc85aabc90c15c3df250e2ce03076c17319f93ab..6ddc99da1e56f008e15d3c811fe8c98f6c9d9efb 100644 (file)
@@ -26,14 +26,20 @@ RUN \
        apt-get clean && \
        localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
 
+RUN pip3 install -U pip
 RUN \
        pip3 install \
                "buildbot-www==$BUILDBOT_VERSION" \
                "buildbot-waterfall-view==$BUILDBOT_VERSION" \
                "buildbot-console-view==$BUILDBOT_VERSION" \
                "buildbot-grid-view==$BUILDBOT_VERSION" \
+               "buildbot-worker==$BUILDBOT_VERSION" \
                pyOpenSSL \
                service_identity
+RUN \
+       sed -i \
+       's/Welcome to buildbot/Welcome to OpenWrt buildbot/' \
+       /usr/local/lib/python*/dist-packages/buildbot_www/static/scripts.js
 
 ENV LANG=en_US.utf8