From 02d552c3b863767d2c2c4fac1aed6ff8418ad60b Mon Sep 17 00:00:00 2001 From: garanews Date: Wed, 31 Jul 2024 10:02:32 +0200 Subject: [PATCH] Update Dockerfile --- compose/local/django/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compose/local/django/Dockerfile b/compose/local/django/Dockerfile index 7357321e..66020f4f 100644 --- a/compose/local/django/Dockerfile +++ b/compose/local/django/Dockerfile @@ -42,7 +42,7 @@ RUN python setup.py build FROM common-base AS go-builder ARG TARGETPLATFORM -RUN apt-get update && apt-get install -y curl gcc-aarch64-linux-gnu gcc-multilib +RUN apt-get update && apt-get install -y curl RUN echo "Building for platform: $TARGETPLATFORM" \ && if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ curl -Lo go.tar.gz https://dl.google.com/go/go1.22.0.linux-amd64.tar.gz \ @@ -50,11 +50,12 @@ RUN echo "Building for platform: $TARGETPLATFORM" \ && rm go.tar.gz \ && git clone https://github.com/volatilityfoundation/dwarf2json.git \ && cd dwarf2json \ - && CC="gcc -m64" /usr/local/go/bin/go build; \ + && /usr/local/go/bin/go build; \ elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ curl -Lo go.tar.gz https://dl.google.com/go/go1.22.0.linux-arm64.tar.gz \ && tar -C /usr/local -xzf go.tar.gz \ && rm go.tar.gz \ + && apt-get install -y gcc-aarch64-linux-gnu \ && git clone https://github.com/volatilityfoundation/dwarf2json.git \ && cd dwarf2json \ && CC=aarch64-linux-gnu-gcc /usr/local/go/bin/go build; \