-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix package build for conan2 (#741)
- Loading branch information
1 parent
7f90a05
commit 1cd7926
Showing
6 changed files
with
30 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
FROM debian:bullseye-slim | ||
FROM debian:bookworm-slim | ||
|
||
LABEL author="Everton Haise Taques <[email protected]>" | ||
LABEL maintainer="Orb Community" | ||
LABEL version="1.0.0" | ||
|
||
ENV BUILD_DEPS "g++ cmake make git pkgconf jq python3-pip python3-setuptools ca-certificates libasan6 zip curl python wget" | ||
ENV BUILD_DEPS "g++ cmake make git pkgconf jq python3 python3-pip python3-setuptools ca-certificates libasan6 zip curl wget" | ||
|
||
COPY ./entrypoint.sh /entrypoint.sh | ||
|
||
|
@@ -13,9 +9,9 @@ RUN mkdir -p /pktvisor-src | |
WORKDIR /pktvisor-src | ||
|
||
RUN apt-get update && \ | ||
apt-get upgrade --yes --force-yes && \ | ||
apt-get install --yes --force-yes --no-install-recommends ${BUILD_DEPS} && \ | ||
pip3 install conan --force-reinstall | ||
apt-get upgrade --yes && \ | ||
apt-get install --yes --no-install-recommends ${BUILD_DEPS} && \ | ||
pip3 install conan --force-reinstall --break-system-packages | ||
|
||
RUN chmod +x /entrypoint.sh | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters