-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.dev
More file actions
144 lines (124 loc) · 6.11 KB
/
Dockerfile.dev
File metadata and controls
144 lines (124 loc) · 6.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# =============================================================================
# TelemetryFlow Go SDK - Dockerfile
# =============================================================================
#
# TelemetryFlow Go SDK - Community Enterprise Observability Platform (CEOP)
# Copyright (c) 2024-2026 DevOpsCorner Indonesia. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# =============================================================================
# Multi-stage build for minimal image size
# =============================================================================
# -----------------------------------------------------------------------------
# Stage 1: Builder
# -----------------------------------------------------------------------------
FROM golang:1.24-alpine AS builder
# Build arguments
ARG VERSION=1.1.1
ARG GIT_COMMIT=unknown
ARG GIT_BRANCH=unknown
ARG BUILD_TIME=unknown
# Install build dependencies
RUN apk add --no-cache git make ca-certificates tzdata
# Set working directory
WORKDIR /build
# Copy go mod files first for better caching
COPY go.mod go.sum ./
# Download dependencies
RUN go mod download && go mod verify
# Copy source code
COPY . .
# Build the generators with version information
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \
-ldflags "-s -w \
-X 'github.com/telemetryflow/telemetryflow-go-sdk/internal/version.Version=${VERSION}' \
-X 'github.com/telemetryflow/telemetryflow-go-sdk/internal/version.GitCommit=${GIT_COMMIT}' \
-X 'github.com/telemetryflow/telemetryflow-go-sdk/internal/version.GitBranch=${GIT_BRANCH}' \
-X 'github.com/telemetryflow/telemetryflow-go-sdk/internal/version.BuildTime=${BUILD_TIME}'" \
-o /telemetryflow-gen ./cmd/generator
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \
-ldflags "-s -w \
-X 'github.com/telemetryflow/telemetryflow-go-sdk/internal/version.Version=${VERSION}' \
-X 'github.com/telemetryflow/telemetryflow-go-sdk/internal/version.GitCommit=${GIT_COMMIT}' \
-X 'github.com/telemetryflow/telemetryflow-go-sdk/internal/version.GitBranch=${GIT_BRANCH}' \
-X 'github.com/telemetryflow/telemetryflow-go-sdk/internal/version.BuildTime=${BUILD_TIME}'" \
-o /telemetryflow-restapi ./cmd/generator-restfulapi
# Verify binaries
RUN /telemetryflow-gen version && /telemetryflow-restapi version
# -----------------------------------------------------------------------------
# Stage 2: Runtime
# -----------------------------------------------------------------------------
FROM alpine:3.21
# =============================================================================
# TelemetryFlow Metadata Labels (OCI Image Spec)
# =============================================================================
LABEL org.opencontainers.image.title="TelemetryFlow Go SDK" \
org.opencontainers.image.description="Go SDK and code generators for TelemetryFlow integration - Community Enterprise Observability Platform (CEOP)" \
org.opencontainers.image.version="1.1.1" \
org.opencontainers.image.vendor="TelemetryFlow" \
org.opencontainers.image.authors="DevOpsCorner Indonesia <support@devopscorner.id>" \
org.opencontainers.image.url="https://telemetryflow.id" \
org.opencontainers.image.documentation="https://docs.telemetryflow.id" \
org.opencontainers.image.source="https://github.com/telemetryflow/telemetryflow-go-sdk" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.base.name="alpine:3.21" \
# TelemetryFlow specific labels
io.telemetryflow.product="TelemetryFlow Go SDK" \
io.telemetryflow.component="telemetryflow-sdk" \
io.telemetryflow.platform="CEOP" \
io.telemetryflow.maintainer="DevOpsCorner Indonesia"
# Install runtime dependencies
RUN apk add --no-cache \
ca-certificates \
tzdata \
&& rm -rf /var/cache/apk/*
# Create non-root user and group
RUN addgroup -g 10001 -S telemetryflow && \
adduser -u 10001 -S telemetryflow -G telemetryflow -h /home/telemetryflow
# Create workspace directory
RUN mkdir -p /workspace && chown -R telemetryflow:telemetryflow /workspace
# Copy binaries from builder
COPY --from=builder /telemetryflow-gen /usr/local/bin/telemetryflow-gen
COPY --from=builder /telemetryflow-restapi /usr/local/bin/telemetryflow-restapi
RUN chmod +x /usr/local/bin/telemetryflow-gen /usr/local/bin/telemetryflow-restapi
# Switch to non-root user
USER telemetryflow
# Set working directory
WORKDIR /workspace
# =============================================================================
# Entrypoint & Command
# =============================================================================
ENTRYPOINT ["/usr/local/bin/telemetryflow-gen"]
CMD ["--help"]
# =============================================================================
# Build Information
# =============================================================================
# Build with:
# docker build \
# --build-arg VERSION=1.1.1 \
# --build-arg GIT_COMMIT=$(git rev-parse --short HEAD) \
# --build-arg GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD) \
# --build-arg BUILD_TIME=$(date -u '+%Y-%m-%dT%H:%M:%SZ') \
# -t telemetryflow/telemetryflow-sdk:1.1.1 .
#
# Run with:
# # SDK Generator
# docker run --rm -v $(pwd):/workspace telemetryflow/telemetryflow-sdk:1.1.1 \
# init --project myapp --service my-service
#
# # RESTful API Generator
# docker run --rm -v $(pwd):/workspace --entrypoint /usr/local/bin/telemetryflow-restapi \
# telemetryflow/telemetryflow-sdk:1.1.1 \
# new --name my-api --module github.com/example/my-api
# =============================================================================