[mirror] a bluesky bot to post golang projects
4
fork

Configure Feed

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

chore(deps): various

configure dependabot to group certain updates and also update the
Docker images we use.

+23 -3
+20 -1
.github/dependabot.yml
··· 4 4 directory: "/" 5 5 schedule: 6 6 interval: "daily" 7 + groups: 8 + go: 9 + update-types: 10 + - minor 11 + - patch 12 + cooldown: 13 + default-days: 7 7 14 - package-ecosystem: "github-actions" 8 15 directory: "/" 9 16 schedule: 10 - interval: "weekly" 17 + interval: "weekly" 18 + groups: 19 + action-deps: 20 + patterns: 21 + - "*" 22 + cooldown: 23 + default-days: 7 24 + - package-ecosystem: "docker" 25 + directory: "/" 26 + schedule: 27 + interval: "weekly" 28 + cooldown: 29 + default-days: 7
+3 -2
Dockerfile
··· 1 - FROM golang:1.23 AS build 1 + FROM golang:1.25 AS build 2 2 3 3 WORKDIR /build 4 4 ··· 8 8 COPY . ./ 9 9 RUN go build ./cmd/... 10 10 11 - FROM debian:bookworm-slim 11 + FROM debian:13.4-slim 12 12 13 13 RUN DEBIAN_FRONTEND=noninteractive apt update \ 14 14 && apt install -y ca-certificates 15 15 16 + # nobody 16 17 USER 65534:65534 17 18 18 19 COPY --from=build --chown=65534:65534 /build/bot /usr/bin/bot