diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2023-02-28 19:06:48 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2023-03-01 12:45:11 +0000 |
commit | 93bd2954f4c47b197233eaff9b165dee52622f27 (patch) | |
tree | 063487052dd79b99aa8019d2a6ced2016de7725a /tests/docker/dockerfiles/debian-toolchain.docker | |
parent | 5b8bcf6b6cf7a254854e75def40883e2a8fea5dc (diff) | |
download | qemu-93bd2954f4c47b197233eaff9b165dee52622f27.zip qemu-93bd2954f4c47b197233eaff9b165dee52622f27.tar.gz qemu-93bd2954f4c47b197233eaff9b165dee52622f27.tar.bz2 |
tests/docker: add USER stanzas to non-lci images
These are flat but not generated by lcitool so we need to manually
update them with the `useradd` stanza.
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20230228190653.1602033-20-alex.bennee@linaro.org>
Diffstat (limited to 'tests/docker/dockerfiles/debian-toolchain.docker')
-rw-r--r-- | tests/docker/dockerfiles/debian-toolchain.docker | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/docker/dockerfiles/debian-toolchain.docker b/tests/docker/dockerfiles/debian-toolchain.docker index dc95458..687a97f 100644 --- a/tests/docker/dockerfiles/debian-toolchain.docker +++ b/tests/docker/dockerfiles/debian-toolchain.docker @@ -34,3 +34,8 @@ RUN cd /root && ./build-toolchain.sh # then copying the built toolchain from stage 0. FROM docker.io/library/debian:11-slim COPY --from=0 /usr/local /usr/local +# As a final step configure the user (if env is defined) +ARG USER +ARG UID +RUN if [ "${USER}" ]; then \ + id ${USER} 2>/dev/null || useradd -u ${UID} -U ${USER}; fi |