2020-03-19 20:54:34 +00:00
|
|
|
#-------------------------------------------------------------------------------------------------------------
|
|
|
|
# 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
|
2020-03-19 22:01:42 +00:00
|
|
|
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-12@sha256:0afe371ce3995bb57590075d902619c2098c9071e8a4cd71f7c00082faede09f
|
2020-03-19 20:54:34 +00:00
|
|
|
|
|
|
|
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
|