silverbullet/.gitpod.Dockerfile

7 lines
365 B
Plaintext
Raw Permalink Normal View History

2022-09-25 08:07:07 +08:00
FROM gitpod/workspace-full:latest
2024-10-10 18:52:28 +08:00
RUN curl -fsSL https://deno.land/x/install/install.sh | sh -s v2.0.0
RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && \
echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && \
2023-07-18 02:28:13 +08:00
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno