FROM node:12

WORKDIR ./

COPY package*.json ./



RUN npm install

Run npm i -g @adonisjs/cli


COPY . .

EXPOSE 3333


CMD [ "adonis", "serve" ]
