mirror of
https://github.com/d0zingcat/ghost-docker.git
synced 2026-05-14 07:26:45 +00:00
- This helps clean up the TB setup since we no longer need to install the CLI tools locally - The service dependency chaining is a bit annoying here but it should all work - We have to change some of the mounts around because of how TB works and where it expects tokens to be
18 lines
426 B
Docker
18 lines
426 B
Docker
FROM python:3.13-slim
|
|
|
|
# Install dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /home/tinybird
|
|
|
|
# Install Tinybird using the standard installation script
|
|
COPY handleLogin.sh /usr/local/bin/tinybird-login
|
|
COPY tb-wrapper /usr/local/bin/tb-wrapper
|
|
|
|
RUN curl https://tinybird.co | sh
|
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|