Skip to content

Commit 81fc4c7

Browse files
bors[bot]ltratt
andauthored
Merge #76
76: Add minimal Docker file to install TeXLive. r=vext01 a=ltratt I expect I'll need a few goes to work out the right subset of TeXLive packages to install... Co-authored-by: Laurence Tratt <[email protected]>
2 parents af17008 + 8d1d219 commit 81fc4c7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.buildbot_dockerfile_debian

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)