Skip to content
Snippets Groups Projects
Commit 10bab570 authored by salazard's avatar salazard
Browse files

Add docker file

parent 722b798f
No related branches found
No related tags found
1 merge request!77Add docker
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"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment