2022-03-15 21:03:26 +00:00
|
|
|
FROM gitpod/workspace-node
|
|
|
|
|
|
|
|
# Install latest pnpm
|
2022-08-02 16:09:16 +00:00
|
|
|
RUN curl -fsSL https://get.pnpm.io/install.sh | SHELL=`which bash` bash -
|
2022-05-03 14:56:16 +00:00
|
|
|
|
|
|
|
# Install deno in gitpod
|
|
|
|
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
|