7 lines
117 B
Docker

FROM node:14.4.0
USER root
WORKDIR /backend
COPY . /backend
RUN yarn
RUN yarn build
CMD [ "node", "./dist/index.js" ]