alpha
Login
or
Join now
boltless.me
/
zoekt
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
fork of https://github.com/sourcegraph/zoekt
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Use Go 1.21.2 (#653)
author
Anatoli Babenia
committer
GitHub
date
2 years ago
(Oct 6, 2023, 6:10 PM +0200)
commit
8c5bd7de
8c5bd7de9403534e839a993bb4afa82b6cded047
parent
cc1b5cda
cc1b5cda7073c68491e0ad9a5b4d08216ae07806
+8
-7
5 changed files
Expand all
Collapse all
Unified
Split
.github
workflows
ci.yml
.tool-versions
Dockerfile
Dockerfile.indexserver
Dockerfile.webserver
+1
.github/workflows/ci.yml
Reviewed
···
3
3
branches:
4
4
- main
5
5
pull_request:
6
6
+
workflow_dispatch:
6
7
name: CI
7
8
jobs:
8
9
test:
+1
-1
.tool-versions
Reviewed
···
1
1
-
golang 1.20.3
1
1
+
golang 1.21.2
+4
-4
Dockerfile
Reviewed
···
1
1
-
FROM golang:1.20.3-alpine3.17 AS builder
1
1
+
FROM golang:1.21.2-alpine3.18 AS builder
2
2
3
3
RUN apk add --no-cache ca-certificates
4
4
5
5
-
ENV CGO_ENABLED=0 GO111MODULE=on
5
5
+
ENV CGO_ENABLED=0
6
6
WORKDIR /go/src/github.com/sourcegraph/zoekt
7
7
8
8
# Cache dependencies
···
13
13
ARG VERSION
14
14
RUN go install -ldflags "-X github.com/sourcegraph/zoekt.Version=$VERSION" ./cmd/...
15
15
16
16
-
FROM rust:alpine3.17 AS rust-builder
16
16
+
FROM rust:alpine3.18 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
30
-
FROM alpine:3.17.3 AS zoekt
30
30
+
FROM alpine:3.18 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
Reviewed
···
1
1
-
FROM alpine:3.17.3
1
1
+
FROM alpine:3.18
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
Reviewed
···
1
1
-
FROM alpine:3.17.3
1
1
+
FROM alpine:3.18
2
2
3
3
RUN apk update --no-cache && apk upgrade --no-cache && \
4
4
apk add --no-cache ca-certificates bind-tools tini