Community maintained Docker config for the knot server
92
fork

Configure Feed

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

fix: default repo scan path in correct step in dockerfile

Lewis: May this revision serve well! <lu5a@proton.me>

authored by lu5a.myatproto.social and committed by

Tangled eedb61e8 380990bb

+1 -1
+1 -1
Dockerfile
··· 1 1 from golang:1.25-alpine as builder 2 - env KNOT_REPO_SCAN_PATH=/home/git/repositories 3 2 env CGO_ENABLED=1 4 3 5 4 arg TAG='v1.13.0-alpha' ··· 10 9 run go build -o /usr/bin/knot -ldflags '-s -w -extldflags "-static"' ./cmd/knot 11 10 12 11 from alpine:latest 12 + env KNOT_REPO_SCAN_PATH=/home/git/repositories 13 13 expose 5555 14 14 expose 22 15 15