mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 18:50:09 +01:00
253e87d186
1, replace the UIVERSION file with ldflags, which is generarted by make to inject into the UI core. 2, inject additional ldflags for harbor compiler Signed-off-by: wang yan <wangyan@vmware.com>
17 lines
495 B
Docker
17 lines
495 B
Docker
FROM photon:2.0
|
|
|
|
RUN tdnf install sudo tzdata -y >> /dev/null \
|
|
&& tdnf clean all \
|
|
&& groupadd -r -g 10000 harbor && useradd --no-log-init -r -g 10000 -u 10000 harbor \
|
|
&& mkdir /harbor/
|
|
|
|
HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080/api/ping || exit 1
|
|
COPY ./make/photon/core/harbor_core /harbor/
|
|
COPY ./src/core/views /harbor/views
|
|
COPY ./make/migrations /harbor/migrations
|
|
|
|
RUN chmod u+x /harbor/harbor_core
|
|
WORKDIR /harbor/
|
|
USER harbor
|
|
ENTRYPOINT ["/harbor/harbor_core"]
|