Last active
May 25, 2023 21:16
-
-
Save JonathonRichardson/9d045456f5f7d668d23f2a454742232b to your computer and use it in GitHub Desktop.
Dev Container Config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster | |
ARG VARIANT=16-bullseye | |
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} | |
# Install tslint, typescript. eslint is installed by javascript image | |
ARG NODE_MODULES="tslint-to-eslint-config typescript" | |
COPY library-scripts/meta.env /usr/local/etc/vscode-dev-containers | |
RUN su node -c "umask 0002 && npm install -g ${NODE_MODULES}" \ | |
&& npm cache clean --force > /dev/null 2>&1 | |
# [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> | |
# [Optional] Uncomment if you want to install an additional version of node using nvm | |
# ARG EXTRA_NODE_VERSION=10 | |
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | |
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/ubuntu | |
{ | |
"name": "Ubuntu", | |
"build": { | |
"dockerfile": "Dockerfile", | |
// Update 'VARIANT' to pick an Ubuntu version: jammy / ubuntu-22.04, focal / ubuntu-20.04, bionic /ubuntu-18.04 | |
// Use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon. | |
"args": { "VARIANT": "ubuntu-22.04" } | |
}, | |
// Use this environment variable if you need to bind mount your local source code into a new container. | |
"remoteEnv": { | |
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" | |
}, | |
// Use 'forwardPorts' to make a list of ports inside the container available locally. | |
// "forwardPorts": [], | |
// Use 'postCreateCommand' to run commands after the container is created. | |
// "postCreateCommand": "uname -a", | |
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | |
"remoteUser": "vscode", | |
"features": { | |
"docker-from-docker": "20.10", | |
"git": "os-provided", | |
"node": "18", | |
"dotnet": "6.0" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/ubuntu/.devcontainer/base.Dockerfile | |
# [Choice] Ubuntu version (use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon): ubuntu-22.04, ubuntu-20.04, ubuntu-18.04 | |
ARG VARIANT="jammy" | |
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT} | |
# [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> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment