Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit e56bb56

Browse files
author
Bowden Kelly
committed
add angular
1 parent 7fe0f10 commit e56bb56

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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/*
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "Angular Dev Env",
3+
"dockerFile": "Dockerfile",
4+
"extensions": []
5+
}

0 commit comments

Comments
 (0)