Sign inSign up

sinevia/nodejs

By sinevia

•Updated almost 11 years ago

Ubuntu 14.04 Node.js, Express Mongo, Monk Supervisor, Mocha

Image
0

399

sinevia/nodejs repository overview

⁠Full Dev Stack

OS: Ubuntu 14.04 Runtime Platform: Node.js Framework: Express DB Drivers: Mongo, Monk Change Listener: Supervisor Tests: Mocha


⁠Dockerfile

FROM ubuntu:14.04

MAINTAINER Sinevia  <[email protected]>

 RUN apt-get update && apt-get upgrade -y

RUN apt-get install python-software-properties python g++ make -y
RUN apt-get install software-properties-common wget unzip -y

RUN add-apt-repository ppa:chris-lea/node.js -y
RUN apt-get update
RUN apt-get install nodejs -y

RUN mkdir /web
ADD . /web
WORKDIR /web

COPY . /web
RUN cd /web
RUN npm install

ENV PORT 3000
EXPOSE 3000

CMD ["./node_modules/.bin/supervisor", "app.js"]

Tag summary

Content type

Image

Digest

sha256:5dad1385e…

Size

163.8 MB

Last updated

almost 11 years ago

docker pull sinevia/nodejs