mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 10:44:36 +01:00
6d7c028729
Refine the Dockerfile to remove temporary workarounds. Also fixes #3587, to make sure the configuration files of rsyslog can be read by uid 10000.
14 lines
320 B
Docker
14 lines
320 B
Docker
FROM vmware/photon:1.0
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf install -y nginx \
|
|
&& ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
&& ln -sf /dev/stderr /var/log/nginx/error.log \
|
|
&& tdnf clean all
|
|
|
|
EXPOSE 80
|
|
VOLUME /var/cache/nginx /var/log/nginx /run
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|