FROM node:alpine
RUN mkdir app
WORKDIR /app
COPY package.json .
RUN npm i
COPY .nuxt ./.nuxt
CMD ["npm", "run", "start"]
this is what i have in my docker file but it seems i've gotten some errors about < JSON unexpected
any ideas?
<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2494">#c2494</a>)</em></sub></div>