8 lines
234 B
Docker
8 lines
234 B
Docker
FROM ubuntu:24.04
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update -y && apt-get install -y --no-install-recommends git build-essential cmake ninja-build python3 pipx python3-sphinx
|
|
RUN pipx ensurepath
|
|
RUN pipx install breathe
|