Skip to content
Snippets Groups Projects
Commit a212608f authored by Pierre Ozoux's avatar Pierre Ozoux
Browse files

Updates known to latest version with missing plugins.

parent e7ad2c1d
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ RUN apt-get update \
php5-mysql \
php5-xmlrpc \
ssmtp \
unzip \
&& rm -rf /var/lib/apt/lists/*
# Add image configuration and scripts
......
......@@ -3,7 +3,22 @@ FROM indiepaas/apache
# Download latest version of Known into /app
RUN mkdir -p /app && \
cd /app && \
curl -L http://assets.withknown.com/releases/known-0.7.5.tgz | tar xz
curl -L http://assets.withknown.com/releases/known-latest.zip -o known.zip && \
unzip known.zip && \
rm -rf known.zip && \
cd 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
# Add script to create 'known' DB
ADD run-known.sh /run-known.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment