Dockerfile: fix typo in variable name

Did not cause an actual issue.

Spotted by GitHub Code Quality

Follow-up to 41c03b4c98 #13250

Closes #21693
This commit is contained in:
Viktor Szakats 2026-05-20 12:01:40 +02:00
parent 76e1da0989
commit f902c3c486
No known key found for this signature in database

View file

@ -32,7 +32,7 @@ RUN apt-get update -qq && apt-get install -qq -y --no-install-recommends \
ARG UID=1000 GID=1000
RUN groupadd --gid $UID dev && \
RUN groupadd --gid $GID dev && \
useradd --uid $UID --gid dev --shell /bin/bash --create-home dev
USER dev:dev