22 lines
677 B
Docker
22 lines
677 B
Docker
FROM python:3.13-slim@sha256:eefe082c4b73082d83b8e7705ed999bc8a1dae57fe1ea723f907a0fc4b90f088
|
|
|
|
# Install uv from Astral.sh
|
|
COPY --from=ghcr.io/astral-sh/uv:0.11.6@sha256:b1e699368d24c57cda93c338a57a8c5a119009ba809305cc8e86986d4a006754 /uv /uvx /bin/
|
|
|
|
# Install dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
jq \
|
|
ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /home/tinybird
|
|
|
|
RUN uv tool install tinybird@0.0.1.dev285 --python 3.13 --force
|
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
|
|
COPY docker/tb-cli/entrypoint.sh /usr/local/bin
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|