From c176e092527e9da6de6baf4386ae1cc89b239ea7 Mon Sep 17 00:00:00 2001 From: abdu <abdukiran@gmail.com> Date: Sun, 10 Nov 2024 19:32:35 +0100 Subject: [PATCH] remove vue cli from dockerfile, just installed it manually on my dev pc --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef4bd95..9d10928 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,6 @@ 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 add global @vue/cli - # copying package.json to root folder and installing dependencies COPY ./frontend/package*.json ./ RUN npm install -- GitLab