Skip to content
Snippets Groups Projects
Commit 142d6360 authored by abdu's avatar abdu
Browse files

move vue cli installation since it timed out

parent 46f2f655
No related branches found
No related tags found
No related merge requests found
......@@ -4,9 +4,12 @@ FROM node:20-alpine AS build-frontend
# working directory for our frontend
WORKDIR /app
# idk why but vuecli is not being installed with package.json
# so we have to manually install it
RUN npm install -g @vue/cli
# copying package.json to root folder and installing dependencies
COPY ./frontend/package*.json ./
RUN npm install -g @vue/cli # idk why but vuecli is not being installed with package.json
RUN npm install
# copying all of frontend to root folder in container
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment