summaryrefslogtreecommitdiff
path: root/.gitpod.Dockerfile
blob: e6dbb01183613d83a827fe27261dbe9963bfce5f (plain) (blame)
1
2
3
4
5
6
7
8
FROM gitpod/workspace-node

# Install latest pnpm
RUN pnpm i -g pnpm

# 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