-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
25 lines (19 loc) · 727 Bytes
/
Dockerfile
File metadata and controls
25 lines (19 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM ubuntu:16.04
# Install basic packages
RUN apt-get update && \
apt-get install -y libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm \
build-essential wget git python curl apt-transport-https
# Install node
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
&& apt-get install -y nodejs
# Install gulp
RUN npm install gulp-cli -g \
&& npm install gulp -D
# 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 -y yarn
# Clean apt cache
RUN apt-get clean
ADD run.sh /
ENTRYPOINT ["/run.sh"]