Skip to content

Commit

Permalink
adding workshoppers to the docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
juandados committed Mar 6, 2018
1 parent 98a2b8a commit 91c6632
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.swp
50 changes: 50 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
FROM node:latest
RUN npm install -g javascripting
RUN npm install -g learnyounode
RUN npm install -g how-to-npm
RUN npm install -g scope-chains-closures
RUN npm install -g stream-adventure
RUN npm install -g elementary-electron
RUN npm install -g how-to-markdown
RUN npm install -g learnyouhtml
#RUN npm install -g functional-javascript-workshop
#RUN npm install -g levelmeup
#RUN npm install -g expressworks
#RUN npm install -g makemehapi
#RUN npm install -g promise-it-wont-hurt
#RUN npm install -g async-you
#RUN npm install -g nodebot-workshop
#RUN npm install -g goingnative
#RUN npm install -g planetproto
#RUN npm install -g webgl-workshop
#RUN npm install -g esnext-generation
#RUN npm install -g test-anything
#RUN npm install -g tower-of-babel
#RUN npm install -g learnyoumongo
#RUN npm install -g regex-adventure
#RUN npm install -g learn-sass
#RUN npm install -g pattern-lab-workshop
#RUN npm install -g learnyoubash
#RUN npm install -g currying-workshopper
#RUN npm install -g bacon-love
#RUN npm install -g innersourceadventure
#RUN npm install -g shader-school
#RUN npm install -g bytewiser
#RUN npm install -g bug-clinic
#RUN npm install -g browserify-adventure
#RUN npm install -g introtowebgl
#RUN npm install -g count-to-6
#RUN npm install -g kick-off-koa
#RUN npm install -g lololodash
#RUN npm install -g learnyoucouchdb
#RUN npm install -g learn-generators
#RUN npm install -g learnyoureact
#RUN npm install -g perfschool
#RUN npm install -g web-audio-school
#RUN npm install -g torrential
#RUN npm install -g thinking-in-react
#RUN npm install -g node-debug-school
#RUN npm install -g seneca-in-practice
#RUN npm install -g less-is-more
#RUN npm install -g js-best-practices
ENTRYPOINT ["/bin/bash"]
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
version: '2'
services:
web:
image: node:latest
build: .
env_file: .env
ports:
- "5000:5000"
volumes:
- "./:/ndschool"
working_dir: /ndschool

0 comments on commit 91c6632

Please sign in to comment.