typo in nginx name

This commit is contained in:
Abhishek
2017-04-25 11:14:35 +05:30
parent d24879f881
commit ec85012a8c
11 changed files with 8 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM centos:7
RUN yum -y install epel-release && yum install -y nodejs npm gcc* make
RUN /bin/bash -c 'npm install -g nodemon' && mkdir /src
# Define working directory
WORKDIR /src
ADD . /src
RUN cd /src && npm install
# Expose port
EXPOSE 8080
# Run app using nodemon
CMD /bin/bash -c 'nodemon /src/index.js'