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

Configure Feed

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

docker: Update OpenSSL libs for CVE 2022-0778 patch (#307)

+4 -2
+2 -1
Dockerfile.indexserver
··· 1 1 FROM alpine:3.15.0 2 2 3 3 RUN apk update --no-cache && apk upgrade --no-cache && \ 4 - apk add --no-cache ca-certificates bind-tools tini git jansson 4 + apk add --no-cache ca-certificates bind-tools tini git jansson && \ 5 + apk add --upgrade --no-cache libcrypto1.1>=1.1.1n-r0 libssl1.1>=1.1.1n-r0 5 6 6 7 # Run as non-root user sourcegraph. External volumes should be mounted under /data (which will be owned by sourcegraph). 7 8 RUN mkdir -p /home/sourcegraph
+2 -1
Dockerfile.webserver
··· 1 1 FROM alpine:3.15.0 2 2 3 3 RUN apk update --no-cache && apk upgrade --no-cache && \ 4 - apk add --no-cache ca-certificates bind-tools tini 4 + apk add --no-cache ca-certificates bind-tools tini && \ 5 + apk add --upgrade --no-cache libcrypto1.1>=1.1.1n-r0 libssl1.1>=1.1.1n-r0 5 6 6 7 # Run as non-root user sourcegraph. External volumes should be mounted under /data (which will be owned by sourcegraph). 7 8 RUN mkdir -p /home/sourcegraph