fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

docker: use go1.22 and alpine3.19

go.mod requires go1.22. This should fix the build step on main.

Test Plan: monitor CI

+5 -5
+3 -3
Dockerfile
··· 1 - FROM golang:1.21.4-alpine3.18 AS builder 1 + FROM 1.22.2-alpine3.19 AS builder 2 2 3 3 RUN apk add --no-cache ca-certificates 4 4 ··· 13 13 ARG VERSION 14 14 RUN go install -ldflags "-X github.com/sourcegraph/zoekt.Version=$VERSION" ./cmd/... 15 15 16 - FROM rust:alpine3.18 AS rust-builder 16 + FROM rust:alpine3.19 AS rust-builder 17 17 18 18 RUN apk update --no-cache && apk upgrade --no-cache && \ 19 19 apk add --no-cache git wget musl-dev>=1.1.24-r10 build-base ··· 27 27 28 28 RUN cargo install --path sourcegraph/docker-images/syntax-highlighter --root /syntect_server --bin scip-ctags 29 29 30 - FROM alpine:3.18 AS zoekt 30 + FROM alpine:3.19 AS zoekt 31 31 32 32 RUN apk update --no-cache && apk upgrade --no-cache && \ 33 33 apk add --no-cache git ca-certificates bind-tools tini jansson wget
+1 -1
Dockerfile.indexserver
··· 1 - FROM alpine:3.18 1 + FROM alpine:3.19 2 2 3 3 RUN apk update --no-cache && apk upgrade --no-cache && \ 4 4 apk add --no-cache ca-certificates bind-tools tini 'git>=2.38.5-r0' jansson && \
+1 -1
Dockerfile.webserver
··· 1 - FROM alpine:3.18 1 + FROM alpine:3.19 2 2 3 3 RUN apk update --no-cache && apk upgrade --no-cache && \ 4 4 apk add --no-cache ca-certificates bind-tools tini