4 lines
81 B
Docker
4 lines
81 B
Docker
FROM gcc
|
|
COPY . .
|
|
RUN apt-get -y update && apt-get -y install libusb-1.0 && make
|