-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ update manylinux for 3.13 support
- Loading branch information
Showing
3 changed files
with
11 additions
and
8 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[tools] | ||
python = "3.13.0" | ||
hadolint = "latest" |
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,6 +1,6 @@ | ||
ARG POLICY=manylinux2014 | ||
ARG PLATFORM=x86_64 | ||
ARG TAG=2024-01-08-eb135ed | ||
ARG TAG=2024-10-07-1887322 | ||
|
||
ARG DEVTOOLSET_ROOTPATH=/opt/rh/gcc-toolset-12/root | ||
ARG LD_LIBRARY_PATH_ARG=${DEVTOOLSET_ROOTPATH}/usr/lib64:${DEVTOOLSET_ROOTPATH}/usr/lib:${DEVTOOLSET_ROOTPATH}/usr/lib64/dyninst:${DEVTOOLSET_ROOTPATH}/usr/lib/dyninst | ||
|
@@ -26,7 +26,7 @@ RUN wget -qO- https://www.colm.net/files/ragel/ragel-${ragel_version}.tar.gz | t | |
WORKDIR /tmp/ragel-${ragel_version} | ||
RUN ./configure --prefix=/usr && make -j$(nproc) && make install | ||
|
||
FROM base_ragel as base_vectorscan | ||
FROM base_ragel AS base_vectorscan | ||
ARG boost_version | ||
ARG hyperscan_git_source | ||
ARG hyperscan_git_tag | ||
|
@@ -35,7 +35,7 @@ RUN git clone -b ${hyperscan_git_tag} ${hyperscan_git_source} | |
RUN wget -qO- http://downloads.sourceforge.net/project/boost/boost/${boost_version}/boost_$(echo "${boost_version}" | tr . _).tar.bz2 | tar xj | ||
RUN mv boost*/boost vectorscan/include | ||
|
||
FROM base_vectorscan as build_pcre | ||
FROM base_vectorscan AS build_pcre | ||
ARG pcre_version | ||
ENV CFLAGS="-fPIC" | ||
WORKDIR /tmp/vectorscan | ||
|
@@ -72,7 +72,7 @@ RUN make -j$(nproc) && make install | |
|
||
FROM base | ||
LABEL maintainer="David Gidwani <[email protected]>" | ||
LABEL org.opencontainers.image.description Python manylinux with Intel Vectorscan | ||
LABEL org.opencontainers.image.description Python manylinux with Vectorscan | ||
ARG LD_LIBRARY_PATH_ARG | ||
ARG PREPEND_PATH | ||
ENV LD_LIBRARY_PATH=${LD_LIBRARY_PATH_ARG} | ||
|