diff --git a/Dockerfile.min b/Dockerfile.min index 9a61e56..ae1a72b 100644 --- a/Dockerfile.min +++ b/Dockerfile.min @@ -2,8 +2,8 @@ FROM python:3.11-slim ARG TARGETPLATFORM 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 [ "$TARGETPLATFORM" != "linux/amd64" ]; then apt-get install --no-install-recommends -y build-essential ; fi +RUN if [ "$TARGETPLATFORM" != "linux/amd64" ]; 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/*