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

Configure Feed

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

docker: use latest alpine and go (#575)

+4 -4
+2 -2
Dockerfile
··· 1 - FROM golang:1.19.6-alpine3.16 AS builder 1 + FROM golang:1.20.2-alpine3.17 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 alpine:3.16.2 AS zoekt 16 + FROM alpine:3.17.3 AS zoekt 17 17 18 18 RUN apk update --no-cache && apk upgrade --no-cache && \ 19 19 apk add --no-cache git ca-certificates bind-tools tini jansson wget
+1 -1
Dockerfile.indexserver
··· 1 - FROM alpine:3.16.4 1 + FROM alpine:3.17.3 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 jansson && \
+1 -1
Dockerfile.webserver
··· 1 - FROM alpine:3.16.4 1 + FROM alpine:3.17.3 2 2 3 3 RUN apk update --no-cache && apk upgrade --no-cache && \ 4 4 apk add --no-cache ca-certificates bind-tools tini