Dockerfile.builder 299 B

123456789101112
  1. FROM debian:bookworm-slim
  2. COPY ci/control /tmp
  3. RUN apt update && \
  4. apt install -y devscripts equivs ninja-build && \
  5. yes | mk-build-deps -i -r tmp/control && \
  6. apt-get --allow-unauthenticated install -f -y && \
  7. apt clean && \
  8. rm -f /tmp/control && \
  9. mkdir /src
  10. WORKDIR /src