The mobbing manual provides guidelines for working in a group oriented context
- Kindness
- Consideration
- Respect
- Driver Learning Goal: practice keyboarding, listening, and translation skills.
| module.exports = function(){ | |
| var date = Date.now(); | |
| while(Date.now() - date < 5000); | |
| return 'ok'; | |
| } |
| FROM ubuntu:15.04 | |
| RUN apt-get update | |
| RUN apt-get install -y node python2.7 gcc make gyp build-essential | |
| RUN mkdir -p /usr/src/app | |
| ENV NODE_ENV=DEVELOPMENT | |
| WORKDIR /usr/src/app | |
| ONBUILD RUN npm install | |
| ONBUILD COPY . /usr/src/app |