File tree Expand file tree Collapse file tree 6 files changed +13
-5
lines changed Expand file tree Collapse file tree 6 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 2727 -
uses :
hadolint/[email protected] 2828 with :
2929 recursive : true
30+ ignore : DL3041
Original file line number Diff line number Diff line change 11FROM fedora:36
22
3- RUN dnf install -y fio nvme-cli nmap tftp
3+ RUN dnf install -y fio nvme-cli nmap tftp && dnf clean all
Original file line number Diff line number Diff line change 11FROM fedora:36
2- RUN dnf install -y dhcp-server tftp-server tftp gettext syslinux net-tools nmap
2+ RUN dnf install -y dhcp-server tftp-server tftp gettext syslinux net-tools nmap && dnf clean all
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ docker-compose -f docker-compose.pxe.yml up --build
2525
2626``` text
2727docker-compose -f docker-compose.pxe.yml exec pxe bash
28- dnf install -y nmap tftp
2928```
3029
3130## Run DHCP discover and get PXE server IP
Original file line number Diff line number Diff line change @@ -4,9 +4,13 @@ ARG TAG=v22.05
44ARG ARCH=native
55
66WORKDIR /root
7- RUN dnf install -y git diffutils procps-ng
7+ RUN dnf install -y git diffutils procps-ng && dnf clean all
8+
9+ # hadolint ignore=DL3003
810RUN git clone https://github.com/spdk/spdk --branch ${TAG} --depth 1 && \
911 cd spdk && git submodule update --init --depth 1 && scripts/pkgdep.sh --rdma
12+
13+ # hadolint ignore=DL3003
1014RUN cd spdk && \
1115 ./configure --disable-tests --without-vhost --without-virtio \
1216 --with-rdma --target-arch=${ARCH} && \
Original file line number Diff line number Diff line change @@ -7,9 +7,13 @@ ARG TAG=v22.05
77ARG ARCH=native
88
99WORKDIR /root
10- RUN dnf install -y git diffutils procps-ng
10+ RUN dnf install -y git diffutils procps-ng && dnf clean all
11+
12+ # hadolint ignore=DL3003
1113RUN git clone https://github.com/spdk/spdk --branch ${TAG} --depth 1 && \
1214 cd spdk && git submodule update --init --depth 1 && scripts/pkgdep.sh --rdma
15+
16+ # hadolint ignore=DL3003
1317RUN cd spdk && \
1418 ./configure --disable-tests --without-vhost --without-virtio \
1519 --with-rdma --target-arch=${ARCH} && \
You can’t perform that action at this time.
0 commit comments