add TARGETARCH

This commit is contained in:
matatonic 2024-06-23 12:57:43 -04:00
parent ea4af74e5c
commit b671aef6ba

View File

@ -1,9 +1,9 @@
FROM python:3.11-slim
ARG TARGETPLATFORM
ARG TARGETPLATFORM TARGETARCH
RUN apt-get update && apt-get install --no-install-recommends -y curl ffmpeg
RUN if [ $TARGEPLATFORM != 'linux/amd64' ]; then apt-get install --no-install-recommends -y build-essential ; fi
RUN if [ $TARGEPLATFORM != 'linux/amd64' ]; then curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ; fi
RUN if [ $TARGEARCH == 'arm64' ]; then apt-get install --no-install-recommends -y build-essential ; fi
RUN if [ $TARGEARCH == 'arm64' ]; then curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ; fi
ENV PATH="/root/.cargo/bin:${PATH}"
RUN apt-get clean && rm -rf /var/lib/apt/lists/*