Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
FROM node:boron |
|
|
|
RUN mkdir -p /usr/src/app |
|
WORKDIR /usr/src/app |
|
|
|
COPY package.json /usr/src/app/ |
|
RUN npm install |
|
|
|
COPY . /usr/src/app |
|
|
|
EXPOSE 3000 |
|
|
|
CMD [ "npm", "start" ] |
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.