You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
286 B
16 lines
286 B
11 years ago
|
FROM node
|
||
|
MAINTAINER Nathan LeClaire <nathan@docker.com>
|
||
|
|
||
|
ADD . /app
|
||
|
WORKDIR /app
|
||
|
RUN npm install
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y vim
|
||
|
RUN useradd -d /home/term -m -s /bin/bash term
|
||
|
RUN echo 'term:term' | chpasswd
|
||
|
|
||
|
EXPOSE 3000
|
||
|
|
||
|
ENTRYPOINT ["node"]
|
||
|
CMD ["app.js", "-p", "3000"]
|