-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update with federation branch default
- Loading branch information
ofilangi
committed
May 24, 2018
1 parent
78f2051
commit 131299d
Showing
1 changed file
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,12 @@ MAINTAINER Olivier Filangi "[email protected]" | |
|
||
# Environment variables | ||
ENV ASKOMICS="https://github.com/askomics/askomics.git" \ | ||
ASKOMICS_DIR="/usr/local/askomics" \ | ||
ASKOMICS_VERSION="17.12" | ||
ASKOMICS_DIR="/usr/local/askomics" | ||
|
||
# Install prerequisites, clone repository and install | ||
RUN apk add --update bash make gcc g++ zlib-dev libzip-dev bzip2-dev xz-dev git python3 python3-dev nodejs nodejs-npm && \ | ||
RUN apk add --update bash make gcc g++ zlib-dev libzip-dev bzip2-dev xz-dev git python3 python3-dev nodejs nodejs-npm linux-headers && \ | ||
git clone ${ASKOMICS} ${ASKOMICS_DIR} && \ | ||
cd ${ASKOMICS_DIR} && \ | ||
git checkout -b ${ASKOMICS_VERSION} origin/${ASKOMICS_VERSION} && \ | ||
npm install gulp -g && \ | ||
npm install --production && \ | ||
chmod +x startAskomics.sh && \ | ||
|