forked from konveyor/tackle2-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
24 lines (22 loc) · 1006 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM registry.access.redhat.com/ubi8/go-toolset:1.16.12 as builder
ENV GOPATH=$APP_ROOT
COPY --chown=1001:0 . .
RUN make docker
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4
COPY --from=builder /opt/app-root/src/bin/hub /usr/local/bin/tackle-hub
ENTRYPOINT ["/usr/local/bin/tackle-hub"]
LABEL name="konveyor/tackle2-hub" \
description="Konveyor Tackle - Hub" \
help="For more information visit https://konveyor.io" \
license="Apache License 2.0" \
maintainers="[email protected],[email protected]" \
summary="Konveyor Tackle - Hub" \
url="https://quay.io/repository/konveyor/tackle2-hub" \
usage="podman run konveyor/tackle2-hub:latest" \
com.redhat.component="konveyor-tackle-hub-container" \
io.k8s.display-name="Tackle Hub" \
io.k8s.description="Konveyor Tackle - Hub" \
io.openshift.expose-services="" \
io.openshift.tags="konveyor,tackle,hub" \
io.openshift.min-cpu="100m" \
io.openshift.min-memory="350Mi"