this repo has no description
0
fork

Configure Feed

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

try dockerfile

+19
+19
Dockerfile
··· 1 + FROM golang:latest as builder 2 + 3 + WORKDIR /app 4 + 5 + COPY go.mod go.sum ./ 6 + COPY . . 7 + RUN go mod download 8 + 9 + RUN CGO_ENABLED=1 go build -o bskyfeed . 10 + 11 + FROM alpine:latest 12 + 13 + RUN apk --no-cache add ca-certificates 14 + RUN apt-get update && apt-get install -y gcc 15 + 16 + WORKDIR /root/ 17 + COPY --from=builder /app/bskyfeed . 18 + 19 + CMD ["./bskyfeed"]
bskyfeedgen

This is a binary file and will not be displayed.