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

Commit

Permalink
Merge pull request #12 from Microsoft/bowdenk7
Browse files Browse the repository at this point in the history
add angular devcontainer
  • Loading branch information
Chuxel committed Apr 17, 2019
2 parents 3d62580 + e56bb56 commit 368cc61
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#-----------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE in the project root for license information.
#-----------------------------------------------------------------------------------------

FROM openjdk:7

# Install git
RUN apt-get update && apt-get -y install git

# https support
RUN apt-get install apt-transport-https

# Install Node.js v10-stable
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \
&& apt-get install -y nodejs

# Install yarn
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update && apt-get install yarn=1.13.0-1

# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "Angular Dev Env",
"dockerFile": "Dockerfile",
"extensions": []
}

0 comments on commit 368cc61

Please sign in to comment.