@ -0,0 +1,6 @@
FROM node:lts-alpine
WORKDIR /app
COPY package*.json ./
RUN yarn install
COPY . .
CMD ["yarn", "run"]