We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ffd7c commit 085759eCopy full SHA for 085759e
.gitignore
@@ -0,0 +1 @@
1
+.idea
Dockerfile
@@ -0,0 +1,18 @@
+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