Skip to content
Merged
Show file tree
Hide file tree
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
198 changes: 0 additions & 198 deletions docker/1.2-1-1/base/Dockerfile.cpu

This file was deleted.

190 changes: 190 additions & 0 deletions docker/1.4-2/base/Dockerfile.cpu
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
ARG UBUNTU_VERSION=24.04
ARG UBUNTU_IMAGE_DIGEST=b359f1067efa76f37863778f7b6d0e8d911e3ee8efa807ad01fbf5dc1ef9006b

# Build stage for SQLite compilation
FROM ubuntu:${UBUNTU_VERSION}@sha256:${UBUNTU_IMAGE_DIGEST} as sqlite-builder
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential wget ca-certificates && \
cd /tmp && \
wget https://www.sqlite.org/2025/sqlite-autoconf-3500200.tar.gz && \
tar xzf sqlite-autoconf-3500200.tar.gz && \
cd sqlite-autoconf-3500200 && \
./configure --prefix=/usr/local && \
make && \
make install && \
ldconfig && \
cd / && \
rm -rf /tmp/sqlite-autoconf-3500200 /tmp/sqlite-autoconf-3500200.tar.gz && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# MLIO builder stage with Ubuntu 20.04
FROM ubuntu:20.04@sha256:874aca52f79ae5f8258faff03e10ce99ae836f6e7d2df6ecd3da5c1cad3a912b as mlio-builder

ARG PYTHON_VERSION=3.10
ARG MLIO_VERSION=v0.9.0
ARG PYARROW_VERSION=17.0.0

ENV DEBIAN_FRONTEND=noninteractive

# Install python and other scikit-learn runtime dependencies
RUN apt-get update && \
apt-get -y install --no-install-recommends \
build-essential curl git wget ca-certificates lsb-release software-properties-common && \
# Add Apache Arrow repository
wget https://packages.apache.org/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \
apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \
apt-get update && \
apt-get install -y -V libarrow-dev=17.0.0-1 libarrow-dataset-dev=17.0.0-1 libparquet-dev=17.0.0-1 libarrow-acero-dev=17.0.0-1 && \
# Add deadsnakes PPA for Python 3.10
add-apt-repository ppa:deadsnakes/ppa && \
apt-get update && \
apt-get -y install --no-install-recommends \
python3.10 python3.10-dev python3.10-distutils && \
# MLIO build dependencies
wget http://es.archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi7_3.3-4_amd64.deb && \
dpkg -i libffi7_3.3-4_amd64.deb && \
apt-get -y install --no-install-recommends \
apt-transport-https gnupg && \
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | \
gpg --dearmor - | \
tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null && \
echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ bionic main' | tee /etc/apt/sources.list.d/kitware.list >/dev/null && \
apt-get update && \
rm /usr/share/keyrings/kitware-archive-keyring.gpg && \
apt-get install -y --no-install-recommends \
autoconf automake cmake cmake-data doxygen kitware-archive-keyring libcurl4-openssl-dev libssl-dev libtool ninja-build zlib1g-dev && \
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 1 && \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN ln -fs /usr/share/zoneinfo/UTC /etc/localtime && \
dpkg-reconfigure --frontend noninteractive tzdata

ENV PIP_ROOT_USER_ACTION=ignore

# Build MLIO from scratch
# Clone MLIO repository
RUN cd /tmp && \
git clone --branch ${MLIO_VERSION} https://github.com/awslabs/ml-io.git mlio

# Patch MLIO for Arrow 17.0.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you remind me why we need to do this? its been a while for me but I know there was some vulnerability issues and MLIO is also not actively maintained by anyone right now.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I honestly have no idea. and this is the step that takes 20+ mins during code build. this package is not actively maintained. and we can't even install prebuilt binaries, we have to build it from source. I was trying to replace whatever this package was doing with like a modern library but it was too much and i don't understand much of it

RUN cd /tmp/mlio && \
sed -i 's/find_package(Arrow 14.0.1 REQUIRED/find_package(Arrow 17.0.0 REQUIRED/g' CMakeLists.txt && \
sed -i 's/pyarrow==14.0.1/pyarrow==17.0.0/g' src/mlio-py/setup.py

# Build MLIO third-party dependencies (includes Arrow C++)
RUN cd /tmp/mlio && \
build-tools/build-dependency build/third-party all

# Configure MLIO build
RUN cd /tmp/mlio && \
mkdir -p build/release && \
cd build/release && \
cmake -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_PREFIX_PATH="$(pwd)/../third-party" ../..

# Build MLIO core
RUN cd /tmp/mlio/build/release && \
cmake --build . && \
cmake --build . --target install

# Configure MLIO Python extension
RUN cd /tmp/mlio/build/release && \
cmake -DMLIO_INCLUDE_PYTHON_EXTENSION=ON -DPYTHON_EXECUTABLE="/usr/bin/python3" \
-DMLIO_INCLUDE_ARROW_INTEGRATION=ON -DCMAKE_PREFIX_PATH="$(pwd)/../third-party" ../..

# Build MLIO Python extension
RUN cd /tmp/mlio/build/release && \
cmake --build . --target mlio-py && \
cmake --build . --target mlio-arrow

# Build MLIO Python wheel
RUN cd /tmp/mlio/src/mlio-py && \
python3 setup.py bdist_wheel

# Copy TBB libraries and MLIO shared libraries to a location we can copy from
RUN mkdir -p /mlio-artifacts && \
cp -r /tmp/mlio/build/third-party/lib/libtbb* /mlio-artifacts/ && \
cp /usr/local/lib/libmlio* /mlio-artifacts/ 2>/dev/null || true && \
cp /tmp/mlio/src/mlio-py/dist/*.whl /mlio-artifacts/

# Main image
FROM ubuntu:${UBUNTU_VERSION}@sha256:${UBUNTU_IMAGE_DIGEST}

ARG PYTHON_VERSION=3.10
ARG PYARROW_VERSION=17.0.0

ENV DEBIAN_FRONTEND=noninteractive

# Install runtime dependencies only
RUN apt-get update && \
apt-get -y upgrade && \
apt-get -y install --no-install-recommends \
curl git jq libatlas-base-dev nginx openjdk-8-jdk-headless unzip wget expat tzdata apparmor \
libgstreamer1.0-0 libxml2 libsqlite3-0 software-properties-common ca-certificates lsb-release \
build-essential linux-libc-dev && \
# Add Apache Arrow repository for runtime libraries only
wget https://packages.apache.org/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \
apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \
apt-get update && \
apt-get install -y -V libarrow-dev=17.0.0-1 libarrow-dataset-dev=17.0.0-1 libparquet-dev=17.0.0-1 libarrow-acero-dev=17.0.0-1 && \
# Add deadsnakes PPA for Python 3.10
add-apt-repository ppa:deadsnakes/ppa && \
apt-get update && \
apt-get -y install --no-install-recommends \
python3.10 python3.10-distutils python3.10-dev && \
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 1 && \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN ln -fs /usr/share/zoneinfo/UTC /etc/localtime && \
dpkg-reconfigure --frontend noninteractive tzdata

# Install uv for fast Python package management
RUN curl -LsSf https://astral.sh/uv/install.sh | sh && \
mv /root/.local/bin/uv /usr/local/bin/uv

ENV PATH=/usr/local/bin:${PATH}
ENV PIP_ROOT_USER_ACTION=ignore

# Copy MLIO wheel, TBB libraries, and MLIO shared libraries from builder stage
COPY --from=mlio-builder /mlio-artifacts/*.whl /tmp/
COPY --from=mlio-builder /mlio-artifacts/libtbb* /usr/local/lib/
COPY --from=mlio-builder /mlio-artifacts/libmlio* /usr/local/lib/

# Install MLIO wheel
RUN uv pip install --system /tmp/*.whl && \
rm /tmp/*.whl

# Copy compiled SQLite from builder stage
COPY --from=sqlite-builder /usr/local/bin/sqlite3 /usr/local/bin/sqlite3
COPY --from=sqlite-builder /usr/local/lib/libsqlite3.* /usr/local/lib/
COPY --from=sqlite-builder /usr/local/include/sqlite3*.h /usr/local/include/

# Update library cache and ensure /usr/local/bin is in PATH
RUN ldconfig && \
echo "/usr/local/lib" > /etc/ld.so.conf.d/sqlite3.conf && \
ldconfig

ENV PATH="/usr/local/bin:${PATH}"

# This command will check the version and print it to the build logs
RUN sqlite3 --version

# Install awscli
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install && \
rm -r aws awscliv2.zip

# Python won't try to write .pyc or .pyo files on the import of source modules
# Force stdin, stdout and stderr to be totally unbuffered. Good for logging
ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PYTHONIOENCODING=UTF-8 LANG=C.UTF-8 LC_ALL=C.UTF-8

# Install core scientific packages with exact versions
RUN uv pip install --system --no-cache \
numpy==2.1.0 \
scikit-learn==1.4.2 \
pyarrow==17.0.0
Loading