-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
22 lines (19 loc) · 882 Bytes
/
Dockerfile
File metadata and controls
22 lines (19 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Dockerfile
# The FROM directive sets the Base Image for subsequent instructions
FROM omniscient/nodejs
RUN apt-get update && apt-get install -y wget locales && \
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \
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 -y google-chrome-beta yarn && \
apt-get autoremove && \
apt-get clean && \
export CHROME_BIN=google-chrome-beta
RUN yarn global add github:gulpjs/gulp#4.0 && \
yarn global add lerna && \
yarn global add typescript && \
yarn global add tape && \
yarn global add aurelia-cli && \
yarn cache clean