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

Commit 7821915

Browse files
author
Bowden Kelly
authored
Update angular repo-container
1 parent a0a2b80 commit 7821915

File tree

1 file changed

+5
-2
lines changed
  • repository-containers/github.com/angular/angular/.devcontainer

1 file changed

+5
-2
lines changed

repository-containers/github.com/angular/angular/.devcontainer/Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@
33
# Licensed under the MIT License. See LICENSE in the project root for license information.
44
#-----------------------------------------------------------------------------------------
55

6-
FROM openjdk:7
6+
FROM openjdk:8
77

88
# Install git
99
RUN apt-get update && apt-get -y install git
1010

1111
# https support
1212
RUN apt-get install apt-transport-https
1313

14+
# get gcc
15+
RUN apt-get update &&apt-get install build-essential -y
16+
1417
# Install Node.js v10-stable
1518
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \
1619
&& apt-get install -y nodejs
@@ -23,4 +26,4 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
2326
# Clean up
2427
RUN apt-get autoremove -y \
2528
&& apt-get clean -y \
26-
&& rm -rf /var/lib/apt/lists/*
29+
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)