10000
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 f1e8c6f commit cc2478fCopy full SHA for cc2478f
10.8/Dockerfile
@@ -0,0 +1,15 @@
1
+FROM node:10.8
2
+MAINTAINER Jonathan Azoff <dev@beomni.com>
3
+
4
+RUN apt-get update && \
5
+ apt-get install -y bzip2 git python-pip python-dev build-essential && \
6
+ rm -rf /var/lib/apt/lists/*
7
+RUN pip install awscli --upgrade --user
8
+RUN echo 'export PATH=~/.local/bin:$PATH' >> /root/.bashrc
9
+RUN npm install -g webpack webpack-dev-server
10
11
+VOLUME /app
12
13
+EXPOSE 3000 9222
14
15
+WORKDIR /app
8.6/Dockerfile
@@ -0,0 +1,11 @@
+FROM node:8.6
+RUN apt-get install -y bzip2 git
0 commit comments