silverbullet/.gitpod.Dockerfile

6 lines
355 B
Plaintext
Raw Normal View History

2022-09-25 08:07:07 +08:00
FROM gitpod/workspace-full:latest
2023-05-04 15:51:39 +08:00
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
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 && \
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno