-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (25 loc) · 851 Bytes
/
Dockerfile
File metadata and controls
27 lines (25 loc) · 851 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
26
27
FROM node:argon
ENV ATOM_VERSION v1.7.3
RUN apt-get update && \
apt-get install git \
curl \
ca-certificates \
libgtk2.0-0 \
libxtst6 \
libnss3 \
libgconf-2-4 \
libasound2 \
fakeroot \
gconf2 \
gconf-service \
libcap2 \
libnotify4 \
libxtst6 \
libnss3 \
gvfs-bin \
xdg-utils \
python -y --no-install-recommends && \
apt-get clean && \
curl -L https://github.com/atom/atom/releases/download/${ATOM_VERSION}/atom-amd64.deb > /tmp/atom.deb && \
dpkg -i /tmp/atom.deb && \
rm -f /tmp/atom.deb