bromite-buildtools/images/buildboxrunner/Dockerfile
2021-07-31 16:19:08 +02:00

25 lines
704 B
Docker

ARG VERSION
FROM uazo/build-deps:$VERSION
ENV DEBIAN_FRONTEND=noninteractive
USER lg
COPY buildbox-worker .
COPY buildbox-run-hosttools .
RUN sudo apt-get -f -y install libgoogle-glog-dev libprotobuf17 libgrpc++1 &&\
sudo chmod +x buildbox-worker &&\
sudo chmod +x buildbox-run-hosttools
CMD PATH=.:$PATH &&\
./buildbox-worker \
--instance=default_instance \
--bots-remote=unix:/wrk-cache/bots.sock \
--stop-after=50 \
--bots-retry-limit=5 \
--buildbox-run=buildbox-run-hosttools \
--cas-remote=unix:/wrk-cache/casd.sock \
--logstream-remote=unix:/wrk-cache/casd.sock \
--cas-instance=default_instance \
--cas-retry-limit=10