10000 Adds 10.8 · jmfirth/docker-webpack@cc2478f · GitHub
[go: up one dir, main page]

Skip to content

Commit cc2478f

Browse files
author
Jonathan Azoff
committed
Adds 10.8
1 parent f1e8c6f commit cc2478f

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

10.8/Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:8.6
2+
MAINTAINER Jonathan Azoff <dev@beomni.com>
3+
4+
RUN apt-get install -y bzip2 git
5+
RUN npm install -g webpack webpack-dev-server
6+
7+
VOLUME /app
8+
9+
EXPOSE 3000 9222
10+
11+
WORKDIR /app

0 commit comments

Comments
 (0)
0