builder.braak.pro/Dockerfile
Bart van der Braak 043a1b6ffa
Some checks failed
/ checks (pull_request) Failing after 12s
Add Prometheus metrics to Buildbot
2024-11-26 17:16:21 +01:00

11 lines
415 B
Docker

# Use the published buildbot/buildbot-master image as the base
FROM buildbot/buildbot-master:master
# Install buildbot-prometheus in the existing virtual environment
RUN /buildbot_venv/bin/pip3 install buildbot-prometheus
# Set the working directory to where the buildbot files are expected
WORKDIR /buildbot
# Keep the existing command to start buildbot
CMD ["dumb-init", "/usr/src/buildbot/start_buildbot.sh"]