From e77ad9f15281b0a3caf32e54749367d88e21d1a7 Mon Sep 17 00:00:00 2001 From: imspace Date: Tue, 8 Nov 2022 12:23:15 +0000 Subject: [PATCH] build: add devcontainer for codespaces --- .devcontainer/Dockerfile | 15 +++++++++++++++ .devcontainer/devcontainer.json | 29 +++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..7a4b57f --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,15 @@ +# [Choice] Debian OS version: bullseye, buster +ARG VARIANT=bullseye +FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/base:0-${VARIANT} + +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 + +# [Optional] Uncomment this section to install additional OS packages. +# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ +# && apt-get -y install --no-install-recommends diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..9e81e28 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,29 @@ +{ + "name": "Deno", + "build": { + "dockerfile": "Dockerfile" + }, + + // Configure tool-specific properties. + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + // Set *default* container specific settings.json values on container create. + "settings": { + // Enables the project as a Deno project + "deno.enable": true, + // Enables Deno linting for the project + "deno.lint": true, + // Sets Deno as the default formatter for the project + "editor.defaultFormatter": "denoland.vscode-deno" + }, + + // Add the IDs of extensions you want installed when the container is created. + "extensions": [ + "denoland.vscode-deno" + ] + } + }, + + "remoteUser": "vscode" +} \ No newline at end of file