28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
#-------------------------------------------------------------------------------------------------------------
 | 
						|
# Copyright (c) Microsoft Corporation. All rights reserved.
 | 
						|
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
 | 
						|
#-------------------------------------------------------------------------------------------------------------
 | 
						|
 | 
						|
# For information on the contents of the container image below, see following Dockerfile:
 | 
						|
# https://github.com/microsoft/vscode-dev-containers/tree/v0.43.0/containers/javascript-node-12/.devcontainer/Dockerfile
 | 
						|
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0.43-12
 | 
						|
 | 
						|
# *************************************************************
 | 
						|
# * Uncomment this section to use RUN instructions to install *
 | 
						|
# * any needed dependencies after executing "apt-get update". *
 | 
						|
# * See https://docs.docker.com/engine/reference/builder/#run *
 | 
						|
# *************************************************************
 | 
						|
# ENV DEBIAN_FRONTEND=noninteractive
 | 
						|
# RUN apt-get update \
 | 
						|
#    && apt-get -y install --no-reccomends <your-package-list-here> \
 | 
						|
#    #
 | 
						|
#    # Clean up
 | 
						|
#    && apt-get autoremove -y \
 | 
						|
#    && apt-get clean -y \
 | 
						|
#    && rm -rf /var/lib/apt/lists/*
 | 
						|
# ENV DEBIAN_FRONTEND=dialog
 | 
						|
 | 
						|
# Uncomment to default to non-root user
 | 
						|
# USER $USER_UID
 | 
						|
 |