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

Adds build deps to base container for new attr vcpkg dep #17

Merged
merged 1 commit into from
Aug 10, 2023
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
17 changes: 13 additions & 4 deletions docker-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,26 @@ ENV BUILD_ENVIRONMENT="ziti-builder-docker"

RUN apt-get update \
&& apt-get -y install \
autoconf \
automake \
autopoint \
build-essential \
crossbuild-essential-armhf \
crossbuild-essential-arm64 \
curl zip unzip tar \
crossbuild-essential-armhf \
curl \
doxygen \
git \
graphviz \
libssl-dev \
libsystemd-dev \
libtool \
ninja-build \
pkg-config \
python3 \
tar \
unzip \
zip \
zlib1g-dev \
libssl-dev \
ninja-build \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sSfL https://cmake.org/files/v${CMAKE_VERSION%.*}/cmake-${CMAKE_VERSION}-linux-$(uname -m).sh -o cmake.sh \
Expand All @@ -53,6 +60,8 @@ COPY ./crossbuild.list /etc/apt/sources.list.d/crossbuild.list
RUN sed -Ei 's/^deb/deb [arch=amd64]/g' /etc/apt/sources.list
RUN apt-get update
RUN apt-get -y install \
libcap-dev:armhf \
libcap-dev:arm64 \
zlib1g-dev:armhf \
zlib1g-dev:arm64 \
libssl-dev:armhf \
Expand Down
Loading