-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
50 lines (34 loc) · 1013 Bytes
/
Copy pathDockerfile
File metadata and controls
50 lines (34 loc) · 1013 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
47
48
49
50
# Multi-stage Dockerfile for Warcraft Logs CLI
FROM golang:1.25-alpine AS builder
# Install git for go modules
RUN apk add --no-cache git
# Set working directory
WORKDIR /app
# Copy go mod files first for better caching
COPY go.mod go.sum ./
# Download dependencies
RUN go mod download
# Copy source code
COPY . .
# Build the application
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o wclogs .
# Final stage - minimal runtime image
FROM alpine:latest
# Install ca-certificates for HTTPS calls to WCL API
RUN apk --no-cache add ca-certificates
# Create non-root user for security
RUN adduser -D -s /bin/sh wclogs
# Set working directory
WORKDIR /home/wclogs
# Copy binary from builder stage
COPY --from=builder /app/wclogs .
# Change ownership to non-root user
RUN chown wclogs:wclogs wclogs
# Switch to non-root user
USER wclogs
# Create directory for config
RUN mkdir -p /home/wclogs/.config
# Expose the binary
ENTRYPOINT ["./wclogs"]
# Default command shows help
CMD ["--help"]