Skip to content
Snippets Groups Projects
Unverified Commit af62f22f authored by hamztouiz's avatar hamztouiz Committed by GitHub
Browse files

Add docker (#77)

* fix node version

* Add docker file
parent 40226839
No related branches found
No related tags found
1 merge request!92Add docker (#77)
Dockerfile
node_modules
.gitignore
README.md
.env.template
FROM node:10
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY . .
EXPOSE 4200
CMD "npm run build"
ENTRYPOINT ["npm", "run", "start"]
This diff is collapsed.
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
"ng2-emoji": "^0.2.0", "ng2-emoji": "^0.2.0",
"ngx-markdown": "^6.3.0", "ngx-markdown": "^6.3.0",
"ngx-moment": "^2.0.0", "ngx-moment": "^2.0.0",
"node": "^10.0.0",
"node-sass": "^4.14.1", "node-sass": "^4.14.1",
"remove-markdown": "^0.2.2", "remove-markdown": "^0.2.2",
"rxjs": "^6.0.0", "rxjs": "^6.0.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment