-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathDockerfile
More file actions
46 lines (34 loc) · 955 Bytes
/
Dockerfile
File metadata and controls
46 lines (34 loc) · 955 Bytes
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
# Build stage
FROM golang:1.24-alpine AS builder
# Install build dependencies
RUN apk add --no-cache \
git
# Set working directory
WORKDIR /build
# Copy go mod files for better caching
COPY go.mod go.sum ./
# Download dependencies
RUN go mod download
# Copy source code
COPY . .
# Build arguments for version info
ARG GIT_COMMIT=unknown
ARG BUILD_DATE=unknown
# Build with optimizations
RUN GOOS=linux go build \
-ldflags="-w -s -X github.com/pgplex/pgschema/cmd.GitCommit=${GIT_COMMIT} -X 'github.com/pgplex/pgschema/cmd.BuildDate=${BUILD_DATE}'" \
-a \
-o pgschema .
# Final stage - Alpine for debugging capabilities
FROM alpine:3.20
# Install runtime dependencies
RUN apk add --no-cache \
ca-certificates \
tzdata && \
adduser -D -g '' pgschema
# Copy binary from builder
COPY --from=builder /build/pgschema /usr/local/bin/pgschema
# Switch to non-root user
USER pgschema
# Set entrypoint
ENTRYPOINT ["pgschema"]