From 22f251646255ad135e12fdc0d9cf715c5c693921 Mon Sep 17 00:00:00 2001 From: Quinn Sinclair Date: Mon, 10 Jun 2024 11:39:35 +0000 Subject: [PATCH] Fix alpine image breaking due to missing dependencies and curl Context: `libexecinfo-dev` couldn't be found on alpine --- tests/integration/docker/Dockerfile.echo.alpine | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/integration/docker/Dockerfile.echo.alpine b/tests/integration/docker/Dockerfile.echo.alpine index 9b239e4..a53efc0 100644 --- a/tests/integration/docker/Dockerfile.echo.alpine +++ b/tests/integration/docker/Dockerfile.echo.alpine @@ -14,14 +14,14 @@ RUN apk add --no-cache \ FROM python-alpine AS build-image # Install aws-lambda-cpp build dependencies RUN apk add --no-cache \ - build-base \ - libtool \ - autoconf \ - automake \ - libexecinfo-dev \ - make \ - cmake \ - libcurl + build-base \ + libtool \ + autoconf \ + automake \ + elfutils-dev \ + make \ + cmake \ + libcurl # Include global args in this stage of the build ARG RIC_BUILD_DIR="/home/build/"