nandi/gleanpublic⑂ Fork 0
⑂ 1756815
Commits
⬇ Clone ▾
git clone https://git.rickub.com/nandi/glean.git
git clone ssh://git@rickub.com/nandi/glean.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Fix dockerfileUnverified

Julien Robert committed 2026-04-21T13:56:15+02:00 Browse files
1756815 parent: cf462e3
modified Dockerfile +1 -1
@@ -11,7 +11,7 @@ RUN npm ci
1111
1212 COPY . .
1313 RUN npx tailwindcss -i ./static/input.css -o ./static/output.css --minify \
14- && CGO_ENABLED=1 go build -ldflags="-s -w" -o /glean .
14+ && CGO_ENABLED=1 go build -tags fts5 -ldflags="-s -w" -o /glean .
1515
1616 FROM alpine:3.21
1717
@@ -11,7 +11,7 @@ RUN npm ci
11 11
12 COPY . .12 COPY . .
13 RUN npx tailwindcss -i ./static/input.css -o ./static/output.css --minify \13 RUN npx tailwindcss -i ./static/input.css -o ./static/output.css --minify \
14- && CGO_ENABLED=1 go build -ldflags="-s -w" -o /glean .14+ && CGO_ENABLED=1 go build -tags fts5 -ldflags="-s -w" -o /glean .
15 15
16 FROM alpine:3.2116 FROM alpine:3.21
17 17