ipp-usb-docker/Dockerfile
Martyn 28062ad5cd
Some checks failed
/ test (push) Failing after 2m15s
Update Dockerfile
2024-03-08 15:13:36 +00:00

12 lines
No EOL
371 B
Docker

FROM golang:bookworm AS builder
RUN apt update && apt install -y git libusb-dev libusb-1.0-0-dev libavahi-client-dev libavahi-common-dev build-essential gcc libusb-0.1-4 libavahi-client3 libavahi-common3 libusb-1.0-0
RUN git clone https://github.com/OpenPrinting/ipp-usb.git
RUN cd ipp-usb && make
FROM scratch
COPY --from=builder /root/ipp-usb /
ENTRYPOINT /ipp-usb