FROM host.today/ht-docker-node:alpine
LABEL author="Task Venture Capital GmbH <hello@task.vc>"

ENV DENO_INSTALL="/root/.deno"

# Install Deno (standard glibc binary works via gcompat in base image)
RUN curl -fsSL https://deno.land/install.sh | sh

ENV PATH="$DENO_INSTALL/bin:$PATH"
