diff --git a/apps/dashboard/deployment/ci-cd/Dockerfile b/apps/dashboard/deployment/ci-cd/Dockerfile
index cf4be690fac1088a5324a999d96be05fdb075732..b49a3e6aa0df5956956b62bbe831493df95373ca 100644
--- a/apps/dashboard/deployment/ci-cd/Dockerfile
+++ b/apps/dashboard/deployment/ci-cd/Dockerfile
@@ -1,5 +1,5 @@
 FROM nginx:1.25.4-alpine
-RUN apk update -y && apk install npm nodejs python3 git make build-essential wget unzip -y
+RUN apk update && apk install npm nodejs python3 git make build-essential wget unzip
 
 RUN npm i -g yarn
 
diff --git a/apps/dashboard/deployment/local/Dockerfile b/apps/dashboard/deployment/local/Dockerfile
index 26d08ee35de46b2862c7e677d83af1ae18bcbdfa..c95d1f9bc400f3567ed9f8729f4fb367bbcbc416 100644
--- a/apps/dashboard/deployment/local/Dockerfile
+++ b/apps/dashboard/deployment/local/Dockerfile
@@ -1,6 +1,6 @@
 FROM node:18.19.1-alpine
 
-RUN apk update && apk install python3 git make build-essential -y
+RUN apk update && apk install python3 git make build-essential
 
 WORKDIR /app