Initial commit that merge both the front end and the API in the same repository
This commit is contained in:
commit
76f98b74dd
285 changed files with 51318 additions and 0 deletions
13
front/docker/Dockerfile.dev
Normal file
13
front/docker/Dockerfile.dev
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
FROM node:6-alpine
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
RUN mkdir /app
|
||||
WORKDIR /app
|
||||
ADD package.json .
|
||||
|
||||
RUN npm install
|
||||
|
||||
VOLUME ["/app/node_modules"]
|
||||
|
||||
CMD ["npm", "run", "dev"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue