diff options
| author | Alexey Neyman <stilor@att.net> | 2020-02-26 11:04:59 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-26 11:04:59 -0800 |
| commit | b56c868175780326ce39a8201c0e4ad178fa06ac (patch) | |
| tree | 694abe41c84120044d4f050fde32f03ba065ae26 /testing/docker/fedora29 | |
| parent | 4fa0ba100b8924b27942ff253c5474c655427027 (diff) | |
| parent | 612d374fbea8d616ebf276c30a6fbca78e8f4bf9 (diff) | |
| download | crosstool-ng-b56c868175780326ce39a8201c0e4ad178fa06ac.tar.gz crosstool-ng-b56c868175780326ce39a8201c0e4ad178fa06ac.tar.bz2 crosstool-ng-b56c868175780326ce39a8201c0e4ad178fa06ac.zip | |
Merge pull request #1306 from cpackham/docker-default-uid
testing/docker: set default value for CTNG_UID/CTNG_GID
Diffstat (limited to 'testing/docker/fedora29')
| -rw-r--r-- | testing/docker/fedora29/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/docker/fedora29/Dockerfile b/testing/docker/fedora29/Dockerfile index 65a0c60e..15dfb348 100644 --- a/testing/docker/fedora29/Dockerfile +++ b/testing/docker/fedora29/Dockerfile @@ -1,6 +1,6 @@ FROM fedora:29 -ARG CTNG_UID -ARG CTNG_GID +ARG CTNG_UID=1000 +ARG CTNG_GID=1000 RUN groupadd -g $CTNG_GID ctng RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng RUN yum install -y autoconf gperf bison file flex texinfo help2man gcc-c++ libtool make patch \ |
