cerrado @ 385586d383acd0868ace3f5da2094dd87c1b89e3

feat: Add docker support
 1diff --git a/contrib/Dockerfile b/contrib/Dockerfile
 2new file mode 100644
 3index 0000000000000000000000000000000000000000..d2e30565e3a317603f4f5d8b3161499daae261e8
 4--- /dev/null
 5+++ b/contrib/Dockerfile
 6@@ -0,0 +1,35 @@
 7+# syntax=docker/dockerfile:1
 8+
 9+FROM golang:1.22-alpine AS builder
10+RUN apk add --no-cache git make sassc
11+
12+WORKDIR /build
13+
14+# Download Git submodules
15+COPY .git ./.git
16+RUN git submodule update --init --recursive
17+
18+# Download Go modules
19+COPY go.mod go.sum ./
20+RUN go mod download
21+RUN go mod verify
22+
23+# Transfer source code
24+COPY Makefile .
25+COPY scss ./scss
26+COPY static ./static
27+COPY templates ./templates
28+COPY *.go ./
29+COPY pkg ./pkg
30+
31+# Build
32+RUN make
33+
34+FROM scratch AS build-release-stage
35+
36+WORKDIR /app
37+
38+COPY --from=builder /build/cerrado .
39+COPY contrib/config.docker.scfg /etc/cerrado.scfg
40+
41+ENTRYPOINT ["./cerrado"]
42diff --git a/contrib/config.docker.scfg b/contrib/config.docker.scfg
43new file mode 100644
44index 0000000000000000000000000000000000000000..64b1bffc2a4accada7fb1e61d3a9d81b5bceba5d
45--- /dev/null
46+++ b/contrib/config.docker.scfg
47@@ -0,0 +1,7 @@
48+listen-addr tcp://:8080
49+
50+root-readme /srv/git/README.md
51+
52+scan /srv/git/ {
53+    public true
54+}
55diff --git a/contrib/docker-compose.yaml b/contrib/docker-compose.yaml
56new file mode 100644
57index 0000000000000000000000000000000000000000..5de78633e28bf7e4c0d8695da7b5f5a74c4ea61a
58--- /dev/null
59+++ b/contrib/docker-compose.yaml
60@@ -0,0 +1,14 @@
61+name: cerrado
62+
63+services:
64+  app:
65+    container_name: cerrado
66+    restart: unless-stopped
67+    build:
68+      context: ../
69+      dockerfile: contrib/Dockerfile
70+    ports:
71+      - "8080:8080"
72+    volumes:
73+      - /srv/git:/srv/git # set your scan folder here
74+      # - ./config.scfg:/etc/cerrado.scfg:ro # load a custom config file