mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-02-06 00:50:29 +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"]
|