This repository was archived by the owner on Nov 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
repository-containers/github.com/angular/angular/.devcontainer Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # -----------------------------------------------------------------------------------------
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # Licensed under the MIT License. See LICENSE in the project root for license information.
4
+ # -----------------------------------------------------------------------------------------
5
+
6
+ FROM openjdk:7
7
+
8
+ # Install git
9
+ RUN apt-get update && apt-get -y install git
10
+
11
+ # https support
12
+ RUN apt-get install apt-transport-https
13
+
14
+ # Install Node.js v10-stable
15
+ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \
16
+ && apt-get install -y nodejs
17
+
18
+ # Install yarn
19
+ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
20
+ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
21
+ && apt-get update && apt-get install yarn=1.13.0-1
22
+
23
+ # Clean up
24
+ RUN apt-get autoremove -y \
25
+ && apt-get clean -y \
26
+ && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Angular Dev Env" ,
3
+ "dockerFile" : " Dockerfile" ,
4
+ "extensions" : []
5
+ }
You can’t perform that action at this time.
0 commit comments