10 lines
284 B
Plaintext
10 lines
284 B
Plaintext
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"
|