]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Dockerfile: fix typo in variable name
authorViktor Szakats <commit@vsz.me>
Wed, 20 May 2026 10:01:40 +0000 (12:01 +0200)
committerViktor Szakats <commit@vsz.me>
Wed, 20 May 2026 11:01:56 +0000 (13:01 +0200)
Did not cause an actual issue.

Spotted by GitHub Code Quality

Follow-up to 41c03b4c98dbc639a32d32486ed5146be2e73ee1 #13250

Closes #21693

Dockerfile

index 33c46309ba37163f8ed68f6b437c11c085640b23..213caebc9ab8b5f83ebb92ee53679b394588bd70 100644 (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