mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 18:12:10 +05:30
15 lines
208 B
Docker
15 lines
208 B
Docker
|
FROM node:5.11
|
||
|
|
||
|
RUN mkdir -p /usr/src/app
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
# Install app dependencies
|
||
|
COPY package.json /usr/src/app/
|
||
|
RUN npm i
|
||
|
|
||
|
# Bundle app source
|
||
|
COPY . /usr/src/app
|
||
|
|
||
|
EXPOSE 8080
|
||
|
CMD ["npm", "start"]
|