39 lines
1.4 KiB
Docker
39 lines
1.4 KiB
Docker
FROM quay.io/pypa/manylinux_2_28_aarch64
|
|
|
|
SHELL ["/bin/bash", "-c"] # Use Bash as shell
|
|
|
|
# Install all basic requirements
|
|
RUN \
|
|
dnf -y update && \
|
|
dnf -y install dnf-plugins-core && \
|
|
dnf config-manager --set-enabled powertools && \
|
|
dnf install -y tar unzip wget xz git which ninja-build gcc-toolset-10-gcc gcc-toolset-10-binutils gcc-toolset-10-gcc-c++ && \
|
|
# Python
|
|
wget -nv -O conda.sh https://github.com/conda-forge/miniforge/releases/download/24.3.0-0/Miniforge3-24.3.0-0-Linux-aarch64.sh && \
|
|
bash conda.sh -b -p /opt/miniforge
|
|
|
|
ENV PATH=/opt/miniforge/bin:$PATH
|
|
ENV CC=/opt/rh/gcc-toolset-10/root/usr/bin/gcc
|
|
ENV CXX=/opt/rh/gcc-toolset-10/root/usr/bin/c++
|
|
ENV CPP=/opt/rh/gcc-toolset-10/root/usr/bin/cpp
|
|
ENV GOSU_VERSION=1.10
|
|
|
|
# Create new Conda environment
|
|
COPY conda_env/aarch64_test.yml /scripts/
|
|
RUN mamba create -n aarch64_test && \
|
|
mamba env update -n aarch64_test --file=/scripts/aarch64_test.yml && \
|
|
mamba clean --all --yes
|
|
|
|
# Install lightweight sudo (not bound to TTY)
|
|
RUN set -ex; \
|
|
wget -nv -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-arm64" && \
|
|
chmod +x /usr/local/bin/gosu && \
|
|
gosu nobody true
|
|
|
|
# Default entry-point to use if running locally
|
|
# It will preserve attributes of created files
|
|
COPY entrypoint.sh /scripts/
|
|
|
|
WORKDIR /workspace
|
|
ENTRYPOINT ["/scripts/entrypoint.sh"]
|