aboutsummaryrefslogtreecommitdiffstats
path: root/.devcontainer/Dockerfile
diff options
context:
space:
mode:
authorLibravatar Thomas Fehrenbach <thomas.fehrenbach@hhi.fraunhofer.de>2020-05-14 21:10:48 +0000
committerLibravatar Thomas Fehrenbach <thomas.fehrenbach@hhi.fraunhofer.de>2020-05-14 21:10:48 +0000
commit03bc7aa14c2793e303562793caeb589c449d1305 (patch)
tree63a64a05cd5222d7398fbdf57ba8a5a9b2498f01 /.devcontainer/Dockerfile
parententerprise-owa package (diff)
downloadferdium-recipes-03bc7aa14c2793e303562793caeb589c449d1305.tar.gz
ferdium-recipes-03bc7aa14c2793e303562793caeb589c449d1305.tar.zst
ferdium-recipes-03bc7aa14c2793e303562793caeb589c449d1305.zip
vscode devcontainer
Diffstat (limited to '.devcontainer/Dockerfile')
-rw-r--r--.devcontainer/Dockerfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
new file mode 100644
index 0000000..e1af327
--- /dev/null
+++ b/.devcontainer/Dockerfile
@@ -0,0 +1,21 @@
1#-------------------------------------------------------------------------------------------------------------
2# Copyright (c) Microsoft Corporation. All rights reserved.
3# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
4#-------------------------------------------------------------------------------------------------------------
5
6# To fully customize the contents of this image, use the following Dockerfile instead:
7# https://github.com/microsoft/vscode-dev-containers/tree/v0.117.1/containers/javascript-node-12/.devcontainer/Dockerfile
8FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-12
9
10# ** [Optional] Uncomment this section to install additional packages. **
11#
12# ENV DEBIAN_FRONTEND=noninteractive
13# RUN apt-get update \
14# && apt-get -y install --no-install-recommends <your-package-list-here> \
15# #
16# # Clean up
17# && apt-get autoremove -y \
18# && apt-get clean -y \
19# && rm -rf /var/lib/apt/lists/*
20# ENV DEBIAN_FRONTEND=dialog
21