Skip to content

Commit

Permalink
Install adduser package in base image
Browse files Browse the repository at this point in the history
  • Loading branch information
felixvanoost committed Aug 13, 2024
1 parent 0ac50bd commit 7eb0912
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/ops/docker/jdk17-jammy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,9 @@ ARG UMLET_VERSION="2023-03-20_UMLet_v15.1"
ARG WIREVIZ_VERSION="0.3.3"
ARG TARGETARCH

RUN groupadd --gecos 1000 kroki && useradd --disabled-password --ingroup kroki -u 1000 kroki
RUN apt-get update && apt-get install --no-install-recommends --yes \
adduser && \
addgroup --gecos 1000 kroki && adduser --disabled-password --ingroup kroki -u 1000 kroki

# For TikZ
#
Expand Down

0 comments on commit 7eb0912

Please sign in to comment.