Skip to content

Commit 22f2516

Browse files
Fix alpine image breaking due to missing dependencies and curl
Context: `libexecinfo-dev` couldn't be found on alpine
1 parent 03ba270 commit 22f2516

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: tests/integration/docker/Dockerfile.echo.alpine

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ RUN apk add --no-cache \
1414
FROM python-alpine AS build-image
1515
# Install aws-lambda-cpp build dependencies
1616
RUN apk add --no-cache \
17-
build-base \
18-
libtool \
19-
autoconf \
20-
automake \
21-
libexecinfo-dev \
22-
make \
23-
cmake \
24-
libcurl
17+
build-base \
18+
libtool \
19+
autoconf \
20+
automake \
21+
elfutils-dev \
22+
make \
23+
cmake \
24+
libcurl
2525

2626
# Include global args in this stage of the build
2727
ARG RIC_BUILD_DIR="/home/build/"

0 commit comments

Comments
 (0)