diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-05-11 08:13:55 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-05-11 08:13:55 -0400 |
commit | b57cfa1d92e098f36466609e67fb18a04526b561 (patch) | |
tree | e2a532f0c4fe3d00bebd9b1c5d7bceba13052310 | |
parent | 3a878010bdbbc1a4ca63f0962ffafbc497a703ff (diff) |
Fix useradd
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ RUN wget -q https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/s pip3 install sh RUN groupadd -g $GID -o user -RUN useradd -u $UID -m -g user -G user +RUN useradd -u $UID -m -g user user # Set the locale ENV ZEPHYR_TOOLCHAIN_VARIANT=zephyr |