From f6c38f17281e5bad397bbd3eadae11ee1e7bd0b7 Mon Sep 17 00:00:00 2001 From: Ohisemega Date: Fri, 16 Aug 2024 14:42:04 +0100 Subject: [PATCH] Fix bug Added concatenation to the line "yum install /tmp/libusb-devel-1.rpm" --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 74b2f66..264000c 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -49,7 +49,7 @@ RUN yum update -y && \ # install the required libusb developer library RUN curl -SL https://rpmfind.net/linux/opensuse/distribution/leap/15.5/repo/oss/x86_64/libusb-1_0-devel-1.0.24-150400.3.3.1.x86_64.rpm -o /tmp/libusb-devel-1.rpm && \ - yum install /tmp/libusb-devel-1.rpm + yum install /tmp/libusb-devel-1.rpm && \ rm /tmp/libusb-devel-1.rpm # full sudo rights inside the container