- Detect BusyBox wget (limited options) vs GNU wget - Use compatible flags for BusyBox: -q -O -T -U only - Add curl to Docker image for better reliability - curl is now preferred and will be used over BusyBox wget BusyBox wget doesn't support --max-redirect, --header, or long-form options which caused web search to fail. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
734 B
Docker
40 lines
734 B
Docker
FROM golang:1.24-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Install build dependencies
|
|
RUN apk add --no-cache gcc musl-dev
|
|
|
|
# Copy go mod files
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Build the application
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o server ./cmd/server
|
|
|
|
# Final stage
|
|
FROM alpine:latest
|
|
|
|
# curl for web fetching, ca-certificates for HTTPS
|
|
RUN apk --no-cache add ca-certificates curl
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy binary from builder
|
|
COPY --from=builder /app/server .
|
|
|
|
# Create data directory
|
|
RUN mkdir -p /app/data
|
|
|
|
# Expose port
|
|
EXPOSE 8080
|
|
|
|
# Set environment variables
|
|
ENV GIN_MODE=release
|
|
|
|
# Run the server
|
|
CMD ["./server", "-port", "8080", "-db", "/app/data/ollama-webui.db"]
|