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
@@ -1,5 +1,5 @@
# Build stage
FROM golang:1.26-alpine AS builder
FROM golang:1.27-alpine AS builder

WORKDIR /app

Expand Down
6 changes: 3 additions & 3 deletions docker/indexer-scip.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build zoekt-git-index
FROM golang:1.26-alpine AS zoekt-builder
FROM golang:1.27-alpine AS zoekt-builder

WORKDIR /zoekt

Expand All @@ -9,7 +9,7 @@ RUN git clone --depth 1 https://github.com/sourcegraph/zoekt.git .
RUN go build -o /bin/zoekt-git-index ./cmd/zoekt-git-index

# Build indexer
FROM golang:1.26-alpine AS builder
FROM golang:1.27-alpine AS builder

WORKDIR /app

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

# Build scip-go binary
FROM golang:1.26-alpine AS scip-go-builder
FROM golang:1.27-alpine AS scip-go-builder

RUN apk add --no-cache git
RUN go install github.com/scip-code/scip-go/cmd/scip-go@latest
Expand Down
4 changes: 2 additions & 2 deletions docker/indexer.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build zoekt-git-index
FROM golang:1.26-alpine AS zoekt-builder
FROM golang:1.27-alpine AS zoekt-builder

WORKDIR /zoekt

Expand All @@ -9,7 +9,7 @@ RUN git clone --depth 1 https://github.com/sourcegraph/zoekt.git .
RUN go build -o /bin/zoekt-git-index ./cmd/zoekt-git-index

# Build indexer
FROM golang:1.26-alpine AS builder
FROM golang:1.27-alpine AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/zoekt-refresh.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Lightweight sidecar for triggering zoekt index reloads on network filesystems
# (CephFS, NFS, EFS) that don't propagate inotify events reliably.
FROM golang:1.26-alpine AS builder
FROM golang:1.27-alpine AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/zoekt.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build zoekt from source
FROM golang:1.26-alpine AS builder
FROM golang:1.27-alpine AS builder

WORKDIR /zoekt

Expand Down
Loading