Initial commit of content.
This commit is contained in:
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM node:current
|
||||
WORKDIR /app
|
||||
COPY package.json /app
|
||||
RUN npm install
|
||||
COPY . /app
|
||||
EXPOSE 3000
|
||||
CMD [ "./scripts/wait-for-it.sh", "mongo:27017", "--", "npm", "start" ]
|
||||
Reference in New Issue
Block a user