561aa6891f
Big bang migration to Deno 🤯
6 lines
354 B
Docker
6 lines
354 B
Docker
FROM gitpod/workspace-full:latest
|
|
|
|
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 |