ipp-usb-docker/Dockerfile
Martyn bbb5ffe952
Some checks failed
/ test (push) Failing after 1m34s
Update Dockerfile
2024-03-08 15:06:28 +00:00

12 lines
No EOL
333 B
Docker

FROM golang:bookworm AS builder
RUN apt update && apt install -y git libusb-dev libavahi-client-dev libavahi-common-dev build-essential gcc libusb libavahi-client libavahi-common
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