Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit fae6200

Browse files
author
jgrim
committed
Init
0 parents  commit fae6200

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM node:8-slim
2+
3+
LABEL MAINTAINER killzoner "https://github.com/killzoner"
4+
5+
RUN apt-get update && apt-get install -y wget --no-install-recommends \
6+
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
7+
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
8+
&& apt-get update \
9+
&& apt-get install -qqy git \
10+
&& apt-get install -y google-chrome-stable \
11+
--no-install-recommends \
12+
&& rm -rf /var/lib/apt/lists/* \
13+
&& apt-get purge --auto-remove -y curl \
14+
&& rm -rf /src/*.deb

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# node-git-chromium
2+
3+
Docker image to build node 8 and chrome headless based tests

0 commit comments

Comments
 (0)