@ -0,0 +1,9 @@
FROM node:latest
COPY package.json ./
COPY yarn.lock ./
RUN yarn global add node-gyp
RUN yarn install
COPY src ./src
CMD yarn start