10 lines
220 B
Plaintext
10 lines
220 B
Plaintext
FROM host.today/ht-docker-node:alpine
|
|
LABEL author="Task Venture Capital GmbH <hello@task.vc>"
|
|
|
|
ENV BUN_INSTALL="/root/.bun"
|
|
|
|
# Install Bun
|
|
RUN curl -fsSL https://bun.sh/install | bash
|
|
|
|
ENV PATH="$BUN_INSTALL/bin:$PATH"
|