закидываю в раб директорию докера
# Use the official Node.js base image
FROM node:16
# Set the working directory
WORKDIR /web
# Copy the rest of the application code
COPY . .
# Run make dev_install
RUN make dev_install
# Expose the port the app will run on
EXPOSE 8080
# Run the command to start the app
CMD ["make", "dev_run"]
и в package.json указываю как "mz-rd": "file:mz-rd" - устанавливается все норм, но потом при make dev_run (yarn serve) возвращает такую ошибку:
These dependencies were not found:
* @mz/coreui-vue in ./src/main.js, ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/home/Home.vue?vue&type=script&lang=js& and 2 others
* mz-rd in ./src/main.js
кто-то сталкивался с таким?
Ты ничего не копируешь
Обсуждают сегодня