fix print

This commit is contained in:
Florian Zirker 2024-02-09 13:52:01 +01:00
parent d469ef3f68
commit c70b5f90d1
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,9 @@
FROM debian:bookworm
ENV DEBIAN_FRONTEND noninteractive
ENV TZ "Europe/Berlin"
# Install Packages (basic tools, cups, basic drivers, HP drivers)
RUN apt-get update \
&& apt-get install -y \
@ -21,6 +25,8 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 631
# Add user and disable sudo password checking
RUN useradd \
--groups=sudo,lp,lpadmin \