Files
docker-cups-pimped/Dockerfile

21 lines
498 B
Docker
Raw Permalink Normal View History

2022-11-12 16:12:33 +01:00
# <https://gitlab.com/ydkn/docker-cups>
2022-11-12 14:11:50 +01:00
FROM ydkn/cups:latest
ARG BROTHER_HLL3230CDW_DRIVER=/tmp/hll3230cdwpdrv-1.0.2-0.i386.deb
ADD drivers/hll3230cdwpdrv-1.0.2-0.i386.deb $BROTHER_HLL3230CDW_DRIVER
RUN apt-get update \
2023-12-18 10:43:21 +01:00
&& apt-get install -y \
lib32stdc++6 \
printer-driver-cups-pdf \
2023-12-18 11:49:25 +01:00
iputils-ping \
dnsutils
2022-11-12 14:11:50 +01:00
RUN dpkg --add-architecture i386 \
&& dpkg -i $BROTHER_HLL3230CDW_DRIVER
RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& rm $BROTHER_HLL3230CDW_DRIVER