Files
threetwo/Dockerfile
2021-10-19 21:19:59 -07:00

17 lines
332 B
Docker

FROM node:12.21.0
LABEL maintainer="Rishi Ghan <rishi.ghan@gmail.com>"
RUN mkdir -p /usr/src/threetwo
WORKDIR /usr/src/threetwo
COPY package.json /usr/src/threetwo
COPY yarn.lock /usr/src/threetwo
COPY nodemon.json /usr/src/threetwo
COPY jsdoc.json /usr/src/threetwo
RUN yarn
COPY . /usr/src/threetwo
EXPOSE 3050
CMD npm start