Files
subconverter-go/Dockerfile
Rogee 7fcabe0225
Some checks failed
CI/CD Pipeline / Test (push) Failing after 22m19s
CI/CD Pipeline / Security Scan (push) Failing after 5m57s
CI/CD Pipeline / Build (amd64, darwin) (push) Has been skipped
CI/CD Pipeline / Build (amd64, linux) (push) Has been skipped
CI/CD Pipeline / Build (amd64, windows) (push) Has been skipped
CI/CD Pipeline / Build (arm64, darwin) (push) Has been skipped
CI/CD Pipeline / Build (arm64, linux) (push) Has been skipped
CI/CD Pipeline / Build Docker Image (push) Has been skipped
CI/CD Pipeline / Create Release (push) Has been skipped
first commit
2025-09-28 10:05:07 +08:00

62 lines
1.4 KiB
Docker

# Multi-stage build for SubConverter-Go
# ======================================
# Stage 1: Build stage
FROM golang:1.21-alpine AS builder
# Install build dependencies
RUN apk add --no-cache git
# Set working directory
WORKDIR /app
# Copy go mod files
COPY go.mod go.sum ./
# Download dependencies
RUN go mod download
# Copy source code
COPY . .
# Build the application with ldflags
RUN CGO_ENABLED=0 GOOS=linux go build \
-ldflags="-w -s -X 'main.Version=1.0.0' -X 'main.BuildTime=$(date -u '+%Y-%m-%d %H:%M:%S')'" \
-a -installsuffix cgo \
-o subconverter-go main.go
# Stage 2: Runtime stage
FROM alpine:latest
# Install ca-certificates for HTTPS
RUN apk --no-cache add ca-certificates tzdata
# Create non-root user
RUN addgroup -g 1001 -S appgroup && \
adduser -u 1001 -S appuser -G appgroup
# Create directories
RUN mkdir -p /app/logs /app/config && \
chown -R appuser:appgroup /app
# Set working directory
WORKDIR /app
# Copy binary from builder
COPY --from=builder /app/subconverter-go .
# Copy config file template
COPY config.yaml.example ./config.yaml.example
# Switch to non-root user
USER appuser
# Expose port
EXPOSE 25500
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:25500/health || exit 1
# Run the application
CMD ["./subconverter-go", "--config", "/app/config.yaml"]