From 8d5e66fa84f45e17546394ca1a7335f3f7852463 Mon Sep 17 00:00:00 2001 From: Wizerd Date: Thu, 4 Jan 2024 16:46:31 +0800 Subject: [PATCH] [fix] dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a453bd9..594bc93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,9 @@ ENV PYTHONUNBUFFERED=1 RUN chmod +x /app/start.sh RUN apt update && apt install -y jq + +RUN echo $TARGETPLATFORM + RUN if [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then \ apt install -y zlib1g-dev libjpeg-dev gcc curl && \ curl https://sh.rustup.rs -sSf | sh -s -- -y && \