this repo has no description
0
fork

Configure Feed

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

try this docker fix

+13 -11
+13 -11
Dockerfile
··· 1 - FROM golang:latest AS builder 1 + # Use the Go 1.23 alpine official image 2 + # https://hub.docker.com/_/golang 3 + FROM golang:1.23-alpine 2 4 5 + # Create and change to the app directory. 3 6 WORKDIR /app 4 7 8 + # Copy go mod and sum files 5 9 COPY go.mod go.sum ./ 6 - COPY . ./ 7 - RUN go mod download 8 10 9 - COPY . . 10 - 11 - RUN CGO_ENABLED=1 GOOS=linux go build -o bskyfeed . 11 + # Copy local code to the container image. 12 + COPY . ./ 12 13 13 - FROM alpine:latest 14 + # Install project dependencies 15 + RUN CGO_ENABLED=1 go mod download 14 16 15 - RUN apk --no-cache add ca-certificates libgcc 17 + # Build the app 18 + RUN go build -o app 16 19 17 - WORKDIR /root 18 - COPY --from=builder /app/bskyfeed . 19 - CMD ["bskyfeed"] 20 + # Run the service on container startup. 21 + ENTRYPOINT ["./app"]