ipp-usb-docker/Dockerfile

12 lines
333 B
Docker
Raw Normal View History

2024-03-08 14:59:10 +00:00
FROM golang:bookworm AS builder
2024-03-08 15:06:28 +00:00
RUN apt update && apt install -y git libusb-dev libavahi-client-dev libavahi-common-dev build-essential gcc libusb libavahi-client libavahi-common
2024-03-08 14:59:10 +00:00
RUN git clone https://github.com/OpenPrinting/ipp-usb.git
2024-03-08 15:02:15 +00:00
RUN cd ipp-usb && make
2024-03-08 14:59:10 +00:00
FROM scratch
2024-03-08 15:00:01 +00:00
COPY --from=builder /root/ipp-usb /
2024-03-08 14:59:10 +00:00
ENTRYPOINT /ipp-usb