Revert "idk"

This reverts commit 1d69a01a8a.
This commit is contained in:
ayntee
2020-12-27 18:49:55 +04:00
parent 280cfef182
commit aacb3d9927
2 changed files with 16 additions and 1 deletions

15
.devcontainer/Dockerfile Normal file
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>

View File

@@ -1,6 +1,6 @@
{
"name": "Deno",
"image": "hayd/debian-deno",
"dockerFile": "Dockerfile",
// Set *default* container specific settings.json values on container create.
"settings": {