Ubuntu 14.04 Node.js, Express Mongo, Monk Supervisor, Mocha
399
OS: Ubuntu 14.04 Runtime Platform: Node.js Framework: Express DB Drivers: Mongo, Monk Change Listener: Supervisor Tests: Mocha
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"]
Content type
Image
Digest
sha256:5dad1385e…
Size
163.8 MB
Last updated
almost 11 years ago
docker pull sinevia/nodejs