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.
14 lines
325 B
14 lines
325 B
10 years ago
|
FROM centos:centos6
|
||
|
|
||
|
# Enable EPEL for Node.js
|
||
|
RUN rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
|
||
|
# Install Node.js and npm
|
||
|
RUN yum install -y npm
|
||
|
|
||
|
# Bundle app source
|
||
|
COPY . /src
|
||
|
# Install app dependencies
|
||
|
RUN cd /src; npm install
|
||
|
|
||
|
EXPOSE 3000
|
||
|
CMD ["node", "/src/bin/www"]
|