This commit is contained in:
rainer
2022-11-12 14:11:50 +01:00
commit 3f79c0305b
2 changed files with 18 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
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 \
&& apt-get install -y lib32stdc++6
RUN dpkg --add-architecture i386 \
&& dpkg -i $BROTHER_HLL3230CDW_DRIVER
RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& rm $BROTHER_HLL3230CDW_DRIVER
#RUN dpkg -i $BROTHER_HLL3230CDW_DRIVER \
# && rm $BROTHER_HLL3230CDW_DRIVER

Binary file not shown.