An API you can curl, or open in a browser, to receive Bluesky data as markdown!
11
fork

Configure Feed

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

Switch to kaniko for daemon-free Docker builds in Spindle CI

docker buildx requires a Docker daemon which isn't available in Spindle's
hosted containers. kaniko builds OCI images directly from a Dockerfile
without needing a daemon, which is exactly what hosted CI environments need.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

jack 1b3ea46e 98d3dfbc

+9 -8
+9 -8
.tangled/workflows/docker.yml
··· 6 6 7 7 dependencies: 8 8 nixpkgs: 9 - - docker 9 + - kaniko 10 10 11 11 steps: 12 12 - name: Build and push to Docker Hub 13 13 command: | 14 - echo "$DOCKER_TOKEN" | docker login -u "$DOCKER_USERNAME" --password-stdin 15 - docker buildx create --use 16 - docker buildx build \ 17 - --platform linux/amd64,linux/arm64 \ 18 - --tag j4ckxyz/bsky-md:latest \ 19 - --push \ 20 - . 14 + mkdir -p /root/.docker 15 + printf '{"auths":{"https://index.docker.io/v1/":{"username":"%s","password":"%s"}}}' \ 16 + "$DOCKER_USERNAME" "$DOCKER_TOKEN" > /root/.docker/config.json 17 + 18 + executor \ 19 + --dockerfile=/tangled/workspace/Dockerfile \ 20 + --destination=docker.io/j4ckxyz/bsky-md:latest \ 21 + --context=dir:///tangled/workspace