Skip to content

Commit 0199180

Browse files
authored
Merge pull request #44 from ltratt/use_bookworm_in_ci
Use Bookworm for CI.
2 parents 7fa89f1 + a7675c2 commit 0199180

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:bookworm
2+
ARG CI_UID
3+
RUN useradd -m -u ${CI_UID} ci
4+
RUN apt-get update && \
5+
apt-get -y install build-essential curl procps file
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)