Files
threetwo/Dockerfile

17 lines
347 B
Docker

FROM node:14-slim
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
ENTRYPOINT [ "npm", "start" ]