Skip to content

Commit

Permalink
Merge rust-lang#18
Browse files Browse the repository at this point in the history
18: Add Dockerfile for CI. r=ltratt a=vext01



Co-authored-by: Edd Barrett <vext01@gmail.com>
  • Loading branch information
bors[bot] and vext01 authored Jan 17, 2022
2 parents 0218fd9 + 82e885e commit 11f1810
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .buildbot_dockerfile_debian
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM debian:bullseye
ARG CI_UID
RUN useradd -m -u ${CI_UID} ci
RUN apt-get update && \
apt-get -y install build-essential curl cmake python3-distutils git
WORKDIR /ci
RUN chown ${CI_UID}:${CI_UID} .
COPY --chown=${CI_UID}:${CI_UID} . .
CMD sh -x .buildbot.sh

0 comments on commit 11f1810

Please sign in to comment.