FROM node:16-alpine

EXPOSE 3000

CMD ["node", "app.js"]

WORKDIR /app

COPY . /app/

RUN yarn install