8 lines
224 B
Docker
8 lines
224 B
Docker
FROM rust:1.65
|
|
COPY worker-setup.sh worker-setup.sh
|
|
RUN bash worker-setup.sh
|
|
USER buildbot
|
|
WORKDIR /buildbot
|
|
COPY buildbot.tac /buildbot/buildbot.tac
|
|
CMD ["/usr/bin/dumb-init", "twistd", "--pidfile=", "-ny", "buildbot.tac"]
|