Docker image related with Angular CLI framework and testing tools
1.1K
Dockerfile:
FROM ubuntu:xenial
MAINTAINER [email protected]
RUN groupadd --gid 1000 node
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
ENV NODE_VERSION 9
RUN apt-get update
&& apt-get install -y software-properties-common
&& add-apt-repository -y ppa:canonical-chromium-builds/stage
&& apt-get install -y curl
RUN curl -sL "https://deb.nodesource.com/setup_$NODE_VERSION.x" -o nodesource_setup.sh
&& bash nodesource_setup.sh
&& apt-get install -y nodejs
RUN apt-get install -y git
&& apt-get install -y chromium-browser
&& apt-get remove -y curl
ENTRYPOINT [ "node" ]
Content type
Image
Digest
Size
317.2 MB
Last updated
over 8 years ago
docker pull ghdmmj/angular-cli:tests