forked from Altinity/altinity-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (14 loc) · 747 Bytes
/
Dockerfile
File metadata and controls
18 lines (14 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
COPY adash /bin/adash
EXPOSE 8080/tcp
# Override a bunch of Red Hat labels set by ubi8 base image
LABEL summary="Altinity Dashboard helps you manage ClickHouse installations controlled by clickhouse-operator."
LABEL name="altinity-dashboard"
LABEL url="https://github.com/altinity/altinity-dashboard"
LABEL maintainer="Altinity, Inc."
LABEL vendor="Altinity, Inc."
LABEL version=""
LABEL description="Altinity Dashboard helps you manage ClickHouse installations controlled by clickhouse-operator."
LABEL io.k8s.display-name="Altinity Dashboard"
LABEL io.k8s.description="Altinity Dashboard helps you manage ClickHouse installations controlled by clickhouse-operator."
CMD ["/bin/adash"]