From dd86d52ebd2c07c108546990d7e382e7493f5dc0 Mon Sep 17 00:00:00 2001 From: sovrgn <boyan.tsolov@vereign.com> Date: Tue, 2 Apr 2024 14:09:40 +0300 Subject: [PATCH] fix: remaining y flags --- apps/dashboard/deployment/ci-cd/Dockerfile | 2 +- apps/dashboard/deployment/local/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dashboard/deployment/ci-cd/Dockerfile b/apps/dashboard/deployment/ci-cd/Dockerfile index cf4be690..b49a3e6a 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 26d08ee3..c95d1f9b 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 -- GitLab