Update Dockerfile.zoekt-ci-image-1.2

This commit is contained in:
John Mason 2023-09-14 18:57:08 +00:00 committed by Rémy Coutable
parent 6ee36f684f
commit aa2f1affe3
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