Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/api.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN CGO_ENABLED=1 go build -o /bin/api-server ./cmd/api
RUN CGO_ENABLED=0 go build -o /bin/migrate ./cmd/migrate

# Runtime stage
FROM alpine:3.23
FROM alpine:3.24

RUN apk add --no-cache ca-certificates tzdata

Expand Down
4 changes: 2 additions & 2 deletions docker/indexer-scip.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ COPY . .
RUN CGO_ENABLED=0 go build -o /bin/indexer ./cmd/indexer

# Build ctags in a separate stage (cleaner)
FROM alpine:3.23 AS ctags-builder
FROM alpine:3.24 AS ctags-builder

WORKDIR /tmp

Expand All @@ -45,7 +45,7 @@ RUN apk add --no-cache git
RUN go install github.com/scip-code/scip-go/cmd/scip-go@latest

# Runtime stage
FROM alpine:3.23
FROM alpine:3.24

# Install runtime dependencies
# - git, ca-certificates, tzdata, jansson: base indexer requirements
Expand Down
4 changes: 2 additions & 2 deletions docker/indexer.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ COPY . .
RUN CGO_ENABLED=0 go build -o /bin/indexer ./cmd/indexer

# Build ctags in a separate stage (cleaner)
FROM alpine:3.23 AS ctags-builder
FROM alpine:3.24 AS ctags-builder

WORKDIR /tmp

Expand All @@ -39,7 +39,7 @@ RUN chmod +x /tmp/install-ctags-alpine.sh
RUN /tmp/install-ctags-alpine.sh

# Runtime stage
FROM alpine:3.23
FROM alpine:3.24

# Install runtime dependencies
RUN apk add --no-cache ca-certificates tzdata git jansson
Expand Down
2 changes: 1 addition & 1 deletion docker/zoekt-refresh.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY internal/log/ ./internal/log/
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /bin/zoekt-refresh ./cmd/zoekt-refresh

# Runtime stage - minimal image
FROM alpine:3.23
FROM alpine:3.24

# Install ca-certificates for any HTTPS needs
RUN apk add --no-cache ca-certificates tzdata
Expand Down
4 changes: 2 additions & 2 deletions docker/zoekt.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN CGO_ENABLED=0 go build -o /bin/zoekt-webserver ./cmd/zoekt-webserver
RUN CGO_ENABLED=0 go build -o /bin/zoekt-git-index ./cmd/zoekt-git-index

# Build ctags in a separate stage (cleaner)
FROM alpine:3.23 AS ctags-builder
FROM alpine:3.24 AS ctags-builder

WORKDIR /tmp

Expand All @@ -29,7 +29,7 @@ RUN chmod +x /tmp/install-ctags-alpine.sh
RUN /tmp/install-ctags-alpine.sh

# Runtime stage
FROM alpine:3.23
FROM alpine:3.24

# Install runtime dependencies
RUN apk add --no-cache ca-certificates tzdata git jansson
Expand Down