-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
27 lines (26 loc) · 1.07 KB
/
Dockerfile
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 known
RUN cd /usr/src/known/IdnoPlugins \
&& curl -L https://github.com/idno/Twitter/archive/master.zip -o twitter.zip \
&& unzip twitter.zip \
&& mv Twitter-master/ Twitter \
&& rm twitter.zip \
&& curl -L https://github.com/idno/Facebook/archive/master.zip -o facebook.zip \
&& unzip facebook.zip \
&& mv Facebook-master/ Facebook \
&& rm facebook.zip \
&& curl -L https://github.com/idno/Markdown/archive/master.zip -o markdown.zip \
&& unzip markdown.zip \
&& mv Markdown-master/ Markdown \
&& rm markdown.zip \
&& curl -L https://github.com/pierreozoux/KnownAppNet/archive/master.zip -o app-net.zip \
&& unzip app-net.zip \
&& mv KnownAppNet-master AppNet \
&& rm app-net.zip \
&& curl -L https://github.com/idno/SoundCloud/archive/master.zip -o soundcloud.zip \
&& unzip soundcloud.zip \
&& mv SoundCloud-master/ SoundCloud \
&& rm soundcloud.zip \
&& curl -L https://github.com/idno/KnownLinkedin/archive/master.zip -o linkedin.zip \
&& unzip linkedin.zip \
&& mv KnownLinkedin-master/LinkedIn LinkedIn \
&& rm linkedin.zip && rm -rf KnownLinkedin-master