Skip to content

Commit

Permalink
chore: add dev container config (#5748)
Browse files Browse the repository at this point in the history
  • Loading branch information
fgreinacher committed Mar 19, 2020
1 parent 7d13705 commit 7a10ba4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .devcontainer/Dockerfile
@@ -0,0 +1,14 @@
#-------------------------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------

# To fully customize the contents of this image, use the following Dockerfile instead:
# https://github.com/microsoft/vscode-dev-containers/tree/v0.106.0/containers/typescript-node-12/.devcontainer/Dockerfile
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-12

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get -y install --no-install-recommends git python-minimal build-essential \
&& rm -rf /var/lib/apt/lists/*
ENV DEBIAN_FRONTEND=dialog
10 changes: 10 additions & 0 deletions .devcontainer/devcontainer.json
@@ -0,0 +1,10 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.106.0/containers/typescript-node-12
{
"name": "Node.js 12 & TypeScript",
"dockerFile": "Dockerfile",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"postCreateCommand": "yarn install"
}
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -15,3 +15,4 @@ renovate-0.0.0-semantic-release.tgz
junit.xml
/test-results
renovate-schema.json
test/datasource/nuget/_fixtures/obj

0 comments on commit 7a10ba4

Please sign in to comment.