Skip to content

Commit

Permalink
Merge pull request #146 from aws/rye-setup
Browse files Browse the repository at this point in the history
Fix alpine image breaking due to missing dependencies 

By submitting this commit, I confirm that my contribution is made under the terms of the Apache 2.0 license.
  • Loading branch information
m-rph authored Jun 10, 2024
2 parents 03ba270 + 22f2516 commit c00b4e7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/integration/docker/Dockerfile.echo.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down

0 comments on commit c00b4e7

Please sign in to comment.