ipp-usb-docker/Dockerfile
Martyn f7792d6e00
Some checks failed
/ test (push) Failing after 2m9s
Update Dockerfile
2024-03-08 15:02:15 +00:00

12 lines
No EOL
295 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
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