This repository has no description
0

Configure Feed

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

1FROM docker.io/library/rust:1-alpine3.23 AS builder 2RUN apk add --no-cache build-base musl-dev cmake perl pkgconfig 3ARG BOBBIN_PROFILE=release 4WORKDIR /src 5COPY . ./ 6RUN rm -f .cargo/config.toml 7RUN cargo build --profile ${BOBBIN_PROFILE} --bin bobbin --package bobbin 8RUN if [ "${BOBBIN_PROFILE}" = "release" ]; then strip target/${BOBBIN_PROFILE}/bobbin; fi 9 10FROM docker.io/library/alpine:3.23 11ARG BOBBIN_PROFILE=release 12RUN apk add --no-cache ca-certificates 13COPY --from=builder /src/target/${BOBBIN_PROFILE}/bobbin /usr/local/bin/bobbin 14ENV BOBBIN_BIND=0.0.0.0:8090 15EXPOSE 8090 16ENTRYPOINT ["/usr/local/bin/bobbin"]