mirror of
https://github.com/GoogleContainerTools/kaniko.git
synced 2026-05-16 13:20:33 +00:00
13 lines
161 B
Plaintext
13 lines
161 B
Plaintext
FROM ubuntu:latest
|
|
|
|
RUN groupadd -g 20000 bar
|
|
RUN groupadd -g 10000 foo
|
|
|
|
RUN useradd -c "Foo user" -u 10000 -g 10000 -G bar -m foo
|
|
|
|
RUN id foo
|
|
|
|
USER foo
|
|
|
|
RUN id
|