Skip to content

Commit e6fdde4

Browse files
committed
Remove installation of libexecinfo-dev package in tests
No longer required by `aws-lambda-cpp`.
1 parent 7f94d1b commit e6fdde4

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

test/integration/docker/Dockerfile.echo.alpine

-10
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,6 @@ RUN apk add --update-cache \
2121
python3 \
2222
libcurl
2323

24-
# AWS Lambda CPP and libcurl rely on backtrace which requires libexecinfo from Alpine.
25-
# Since starting from Alpine3.17 libexecinfo is no longer available, temporarily source it from Alpine3.16
26-
# while awaiting an upstream resolution in AWS Lambda CPP.
27-
RUN if [[ "${DISTRO_VERSION}" == "3.17" ]] || [[ "${DISTRO_VERSION}" == "3.18" ]] ; \
28-
then \
29-
apk add --update-cache --repository=https://dl-cdn.alpinelinux.org/alpine/v3.16/main/ libexecinfo-dev ; \
30-
else \
31-
apk add --update-cache libexecinfo-dev ; \
32-
fi
33-
3424
# Include global arg in this stage of the build
3525
ARG FUNCTION_DIR
3626
# Create function directory

test/integration/docker/Dockerfile.programmatic.alpine

-10
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,6 @@ RUN apk add --update-cache \
2121
python3 \
2222
libcurl
2323

24-
# AWS Lambda CPP and libcurl rely on backtrace which requires libexecinfo from Alpine.
25-
# Since starting from Alpine3.17 libexecinfo is no longer available, temporarily source it from Alpine3.16
26-
# while awaiting an upstream resolution in AWS Lambda CPP.
27-
RUN if [[ "${DISTRO_VERSION}" == "3.17" ]] || [[ "${DISTRO_VERSION}" == "3.18" ]] ; \
28-
then \
29-
apk add --update-cache --repository=https://dl-cdn.alpinelinux.org/alpine/v3.16/main/ libexecinfo-dev ; \
30-
else \
31-
apk add --update-cache libexecinfo-dev ; \
32-
fi
33-
3424
# Include global arg in this stage of the build
3525
ARG FUNCTION_DIR
3626
# Create function directory

0 commit comments

Comments
 (0)