mirror of
https://github.com/d0zingcat/ghost-docker.git
synced 2026-05-13 23:16:44 +00:00
18 lines
498 B
Docker
18 lines
498 B
Docker
FROM python:3.13-slim@sha256:6544e0e002b40ae0f59bc3618b07c1e48064c4faed3a15ae2fbd2e8f663e8283
|
|
|
|
# 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"
|