add example docker file for testing on manylinux-x64

This commit is contained in:
daanx 2024-05-19 20:42:58 -07:00
parent b9b321d328
commit d5ac4f7b95
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,22 @@
FROM quay.io/pypa/manylinux2014_x86_64
# Install tools
RUN yum install -y openssl-devel
RUN yum install -y gcc gcc-c++ kernel-devel make
RUN yum install -y git cmake
RUN yum install -y vim
RUN mkdir -p /home/dev
WORKDIR /home/dev
# Get mimalloc
RUN git clone https://github.com/microsoft/mimalloc -b dev-slice
RUN mkdir -p mimalloc/out/release
RUN mkdir -p mimalloc/out/debug
# Build mimalloc debug
WORKDIR /home/dev/mimalloc/out/debug
RUN cmake ../.. -DMI_DEBUG_FULL=ON
RUN make -j
CMD ["/bin/sh"]

10
docker/readme.md Normal file
View File

@ -0,0 +1,10 @@
Various example docker files used for testing.
Usage:
```
> cd <host>
> docker build -t <host>-mimalloc .
> docker run -it <host>-mimalloc
>> make test
```