From c47d5077eea61f232a4eef9d31737db9f799b881 Mon Sep 17 00:00:00 2001 From: 1cedsoda <29167146+1cedsoda@users.noreply.github.com> Date: Thu, 16 May 2024 10:10:47 +0200 Subject: [PATCH] install autoconf in pipeline --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3781632..c65e28e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,10 @@ ENV YFN_URL= ENV BASE_URL= COPY package.json package-lock.json ./ -RUN npm i +RUN apk add --no-cache autoconf automake libtool nasm build-base && \ + npm i && \ + apk del autoconf automake libtool nasm build-base + COPY . . # run with build variables