We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b671782 commit 8d1d219Copy full SHA for 8d1d219
.buildbot_dockerfile_debian
@@ -0,0 +1,9 @@
1
+FROM debian:bullseye
2
+ARG CI_UID
3
+RUN useradd -m -u ${CI_UID} ci
4
+RUN apt-get update && \
5
+ apt-get -y install build-essential git python3 texlive-base texlive-latex-base texlive-latex-recommended
6
+WORKDIR /ci
7
+RUN chown ${CI_UID}:${CI_UID} .
8
+COPY --chown=${CI_UID}:${CI_UID} . .
9
+CMD sh -x .buildbot.sh
0 commit comments