forked from roryhewitt/akamaiconfigkit-public
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hunter, Kirsten
committed
May 24, 2017
1 parent
47c0b22
commit 14cfc94
Showing
4 changed files
with
18 additions
and
2 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM node:4-onbuild | ||
MAINTAINER Kirsten Hunter ([email protected]) | ||
RUN apt-get update | ||
RUN apt-get install -y curl patch gawk g++ gcc make libc6-dev patch libreadline6-dev zlib1g-dev libssl-dev libyaml-dev autoconf libgdbm-dev libncurses5-dev automake libtool bison pkg-config libffi-dev | ||
RUN apt-get install -y -q libssl-dev python-all wget vim | ||
ADD . /opt | ||
RUN npm install | ||
RUN npm install -g n; n 5.0.0 | ||
RUN git clone https://github.com/akamai-open/api-kickstart | ||
RUN git clone https://github.com/stedolan/jq.git | ||
RUN cd jq | ||
RUN autoreconf -i | ||
RUN ./configure --disable-maintainer-mode | ||
RUN make install |
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
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