mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
8f036c765a
The latest `photon:2.0` does not include `groupadd` and `useradd` we need to install `shadow` package which includes these commands. Signed-off-by: He Weiwei <hweiwei@vmware.com>
6 lines
202 B
Docker
6 lines
202 B
Docker
FROM photon:2.0
|
|
|
|
RUN tdnf install -y shadow >> /dev/null \
|
|
&& tdnf clean all \
|
|
&& mkdir -p /etc/registry \
|
|
&& groupadd -r -g 10000 harbor && useradd --no-log-init -m -g 10000 -u 10000 harbor |