Merge branch 'johnmason-master-patch-86737' into 'master'

Update Dockerfile.zoekt-ci-image-1.2

See merge request https://gitlab.com/gitlab-org/gitlab-build-images/-/merge_requests/713

Merged-by: Rémy Coutable <remy@rymai.me>
Approved-by: Dmitry Gruzd <dgruzd@gitlab.com>
Approved-by: Rémy Coutable <remy@rymai.me>
Reviewed-by: Rémy Coutable <remy@rymai.me>
Co-authored-by: Dmitry Gruzd <dgruzd@gitlab.com>
Co-authored-by: John Mason <9717668-johnmason@users.noreply.gitlab.com>
This commit is contained in:
Rémy Coutable 2023-09-14 18:57:09 +00:00
commit 828695779c
2 changed files with 5 additions and 5 deletions

View file

@ -63,10 +63,10 @@ alpine-bash-jq-curl-git:
apollo:
extends: .build_static_image
zoekt-ci-image-1.1:
zoekt-ci-image-1.2:
extends: .build_static_image
zoekt-ci-image-1.2:
zoekt-ci-image-1.3:
extends: .build_static_image
postgres-12-pgvector-0.4.1:

View file

@ -4,12 +4,12 @@ WORKDIR /usr/src/app
RUN apk add git
ENV ZOEKT_VERSION=c08faec66fc26a41007b2176fbea86c52b0efe4b
ENV GITLAB_ZOEKT_INDEXER_VERSION=4b334179dcfc2226dd9d7e0f5e4f75ede35a6d9d
ENV ZOEKT_VERSION=fcb279ae404c0aa102121b28257143ad16e77482
ENV GITLAB_ZOEKT_INDEXER_VERSION=266c8da32eeb80a1cd94db16fdd355ccf3fa5827
RUN apk add go && \
go install github.com/sourcegraph/zoekt/cmd/zoekt-webserver@$ZOEKT_VERSION && \
go install gitlab.com/gitlab-org/search-team/gitlab-zoekt-indexer/cmd/gitlab-zoekt-indexer@$GITLAB_ZOEKT_INDEXER_VERSION && \
go install gitlab.com/gitlab-org/gitlab-zoekt-indexer/cmd/gitlab-zoekt-indexer@$GITLAB_ZOEKT_INDEXER_VERSION && \
rm -rf /go/pkg /go/src /usr/local/go
FROM alpine:3.17 as main