Files
docker-cups-pimped/Dockerfile

18 lines
478 B
Docker
Raw 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-03-05 11:50:46 +01:00
&& apt-get install -y lib32stdc++6 \
&& apt-get install -y printer-driver-cups-pdf
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