1
0
silverbullet/.gitpod.Dockerfile

7 lines
364 B
Docker
Raw Normal View History

2022-09-25 00:07:07 +00:00
FROM gitpod/workspace-full:latest
2023-07-17 18:33:11 +00:00
RUN curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.35
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-17 18:28:13 +00:00
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno