FROM node:latest

USER node
WORKDIR /usr/src/app
COPY --chown=node:node ./api/ .
RUN npm install

CMD npm start
