mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-03 15:43:39 +01:00
535e7cadd5
1> change to new photon base images 2> update OSS to latest
12 lines
298 B
Docker
12 lines
298 B
Docker
FROM vmware/photon:1.0-20170928
|
|
|
|
#base image for rsyslog base on photon
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf install -y cronie rsyslog shadow tar gzip \
|
|
&& mkdir /etc/rsyslog.d/ \
|
|
&& mkdir /var/spool/rsyslog \
|
|
&& groupadd syslog \
|
|
&& useradd -g syslog syslog \
|
|
&& tdnf clean all
|