Added experimental script to automate fetching Tinybird tokens

This commit is contained in:
Chris Raible
2025-07-08 20:44:09 -07:00
committed by James Loh
parent 62ff21363f
commit 2f310b7ddc
2 changed files with 43 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ FROM python:3.13-slim@sha256:6544e0e002b40ae0f59bc3618b07c1e48064c4faed3a15ae2fb
# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
jq \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
@@ -10,6 +11,7 @@ WORKDIR /home/tinybird
# Install Tinybird using the standard installation script
COPY handleLogin.sh /usr/local/bin/tinybird-login
COPY getTokens.sh /usr/local/bin/get-tokens
COPY tb-wrapper /usr/local/bin/tb-wrapper
RUN curl https://tinybird.co | sh