Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix lcov installation #18

Merged
merged 1 commit into from
May 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions docker/images/build-kit/alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,13 @@ FROM alpine:3.17
ARG EXT_MOUNT=/ext
ARG EVEREST_CMAKE_PATH=/usr/lib/cmake/everest-cmake

# Add edge/testing repository to enable installation of lcov
RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories

RUN apk update && \
apk add --no-cache \
# basic command line tools
git \
curl \
rsync \
bash \
bash \
# build tools
samurai \
make \
Expand All @@ -31,8 +28,7 @@ RUN apk update && \
# python3 support
py3-pip \
# required for testing
gtest-dev \
lcov
gtest-dev


# additional packages
Expand Down Expand Up @@ -60,6 +56,11 @@ RUN apk add --no-cache \
# required for user and capability support in everest-framework >= 0.9.0
libcap-dev

# Add edge/testing repository to enable installation of lcov, which is not available in the main repository
RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories
RUN apk update && apk add --no-cache \
lcov=2.0-r2

RUN python3 -m pip install \
environs>=9.5.0 \
pydantic==1.* \
Expand Down
Loading