summaryrefslogtreecommitdiff
path: root/.devcontainer/examples.deno.Dockerfile
blob: e4526f1acdb37b2f7e16fd400ed4930cf73eac80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
FROM mcr.microsoft.com/devcontainers/javascript-node:0-18

# Install latest pnpm
RUN npm install -g pnpm

# Install deno
ENV DENO_INSTALL=/usr/local
RUN curl -fsSL https://deno.land/x/install/install.sh | sh

COPY example-welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt