Add support for codespaces

This commit is contained in:
Skillz4Killz
2020-12-07 14:24:47 +00:00
committed by GitHub
parent 9ff30ad1d8
commit 5514d83793
2 changed files with 38 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM mcr.microsoft.com/vscode/devcontainers/base:debian-10
ENV DENO_INSTALL=/deno
RUN mkdir -p /deno \
&& curl -fsSL https://deno.land/x/install/install.sh | sh \
&& chown -R vscode /deno
ENV PATH=${DENO_INSTALL}/bin:${PATH} \
DENO_DIR=${DENO_INSTALL}/.cache/deno
RUN deno cache deps.ts
# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>