mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-03 09:09:47 +01:00
26 lines
612 B
Docker
26 lines
612 B
Docker
|
ARG build_image
|
||
|
FROM ${build_image} AS build
|
||
|
|
||
|
ENV CGO_ENABLED=0
|
||
|
ENV GOOS=linux
|
||
|
ENV GOARCH=amd64
|
||
|
|
||
|
COPY src /harbor/src
|
||
|
WORKDIR /harbor/src/cmd/exporter
|
||
|
RUN go build -o /out/harbor_exporter
|
||
|
|
||
|
FROM photon:2.0
|
||
|
|
||
|
RUN tdnf install -y tzdata shadow >> /dev/null \
|
||
|
&& tdnf clean all \
|
||
|
&& groupadd -r -g 10000 harbor && useradd --no-log-init -r -m -g 10000 -u 10000 harbor \
|
||
|
&& mkdir /harbor/
|
||
|
|
||
|
COPY --from=build /out/harbor_exporter /harbor/harbor_exporter
|
||
|
RUN chown harbor:harbor /harbor/harbor_exporter && chmod u+x /harbor/harbor_exporter
|
||
|
|
||
|
WORKDIR /harbor
|
||
|
USER harbor
|
||
|
|
||
|
ENTRYPOINT ["/harbor/harbor_exporter"]
|