From 050ada4eab58e43f0dfdab30ed584cd079d4337d Mon Sep 17 00:00:00 2001
From: sovrgn <boyan.tsolov@vereign.com>
Date: Tue, 2 Apr 2024 14:30:37 +0300
Subject: [PATCH] test: alpine with apk on agent

---
 apps/agent/deployment/ci-cd/Dockerfile | 2 +-
 apps/agent/deployment/local/Dockerfile | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/apps/agent/deployment/ci-cd/Dockerfile b/apps/agent/deployment/ci-cd/Dockerfile
index aed97acf..486c2766 100644
--- a/apps/agent/deployment/ci-cd/Dockerfile
+++ b/apps/agent/deployment/ci-cd/Dockerfile
@@ -5,7 +5,7 @@ ARG API_TOKEN
 ARG JOB_ID
 
 # Instal required software
-RUN apt update -y && apt install python3 git make build-essential wget unzip -y
+RUN apk update && apk add python3 git make alpine-sdk wget unzip
 
 # Set the working directory
 WORKDIR app
diff --git a/apps/agent/deployment/local/Dockerfile b/apps/agent/deployment/local/Dockerfile
index f61fa954..08bb537d 100644
--- a/apps/agent/deployment/local/Dockerfile
+++ b/apps/agent/deployment/local/Dockerfile
@@ -1,6 +1,6 @@
 FROM node:18.19.1-alpine
 
-RUN apt update -y && apt install python3 git make build-essential -y
+RUN apk update && apk add python3 git make alpine-sdk
 
 WORKDIR app
 
-- 
GitLab