Skip to content

Commit 085759e

Browse files
committed
1.5.0-6.11.0
1 parent f5ffd7c commit 085759e

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM elixir:1.5.0
2+
3+
ENV NVM_DIR /root/.nvm
4+
ENV NODE_VERSION=6.11.0
5+
6+
# install NVM
7+
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash \
8+
&& . $NVM_DIR/nvm.sh \
9+
&& nvm install $NODE_VERSION \
10+
&& nvm alias default $NODE_VERSION \
11+
&& nvm use default
12+
13+
# install python and awscli
14+
RUN apt-get update \
15+
&& apt-get -y install python-dev \
16+
&& wget https://bootstrap.pypa.io/get-pip.py \
17+
&& python get-pip.py \
18+
&& pip install awscli --upgrade

0 commit comments

Comments
 (0)