-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (17 loc) · 746 Bytes
/
Dockerfile
File metadata and controls
21 lines (17 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# syntax=docker/dockerfile:1.2
FROM alpine
RUN apk --no-cache --no-progress add ca-certificates tzdata git \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*
COPY hub-agent-kubernetes .
ENTRYPOINT ["/hub-agent-kubernetes"]
EXPOSE 80
EXPOSE 443
# Metadata
LABEL org.opencontainers.image.source="https://github.com/traefik/hub-agent-kubernetes" \
org.opencontainers.image.vendor="Traefik Labs" \
org.opencontainers.image.url="https://traefik.io" \
org.opencontainers.image.title="Traefik Hub" \
org.opencontainers.image.description="The Global Networking Platform for Kubernetes" \
org.opencontainers.image.version="$VERSION" \
org.opencontainers.image.documentation="https://hub.traefik.io/documentation"