This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
guestfs-inspect/Dockerfile
2024-05-14 22:09:54 -04:00

12 lines
197 B
Docker

FROM debian as builder
RUN apt update && apt upgrade -y
RUN apt install -y libczmq-dev libguestfs-dev gcc valgrind gdb make pkg-config
COPY . /opt
WORKDIR /opt
FROM builder as compile
RUN make