-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (15 loc) · 948 Bytes
/
Copy pathDockerfile
File metadata and controls
18 lines (15 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (c) Juniper Networks, Inc., 2025-2026.
# All rights reserved.
# SPDX-License-Identifier: MIT
FROM alpine:3.22
# OCI Image Labels - Required for ApstraHub container metadata extraction
# Note: version, title, description are set by docker/metadata-action in CI
LABEL org.opencontainers.image.title="ApstraHub Container Example - Alpine"
LABEL org.opencontainers.image.description="Minimal Alpine container demonstrating ApstraHub container publishing"
LABEL org.opencontainers.image.authors="ApstraHub Team <apstrahub@juniper.net>"
LABEL org.opencontainers.image.documentation="https://github.com/Juniper/apstrahub-container-test-alpine"
LABEL org.opencontainers.image.source="https://github.com/Juniper/apstrahub-container-test-alpine"
LABEL org.opencontainers.image.vendor="Juniper Networks"
LABEL org.opencontainers.image.licenses="MIT"
# Keep it minimal - just echo for health check
CMD ["echo", "ApstraHub container example"]