blob: e1d7b4346e5d92f5819cf6927e7edd1b5fa2f231 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM fedora:39
WORKDIR /root
# first line for nvme-stas
# second line for libnvme
RUN dnf install -y python3-dasbus python3-pyudev python3-systemd python3-gobject meson \
git gcc g++ cmake openssl-devel libuuid-devel json-c-devel swig python-devel meson && dnf clean all
COPY . .
RUN meson .build && ninja -C .build && meson install -C .build
ENTRYPOINT ["python3"]
|