diff --git a/Dockerfile b/Dockerfile
index ef4bd95fe1359c9dcdd3812383d9b368601c27da..9d10928cab7fc3ecdc003b742e6739bc9d8e6aa0 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