Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
garanews authored Jul 31, 2024
1 parent 61201ab commit 0097092
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions compose/local/django/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.3
ARG TARGETPLATFORM

ARG BUILDPLATFORM

FROM python:3.12-slim-bookworm AS common-base

Expand Down Expand Up @@ -42,20 +42,19 @@ RUN python setup.py build

FROM common-base AS go-builder
ARG TARGETPLATFORM
RUN apt-get update && apt-get install -y curl
RUN apt-get update && apt-get install -y curl gcc-aarch64-linux-gnu
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 \
&& tar -C /usr/local -xzf go.tar.gz \
&& rm go.tar.gz \
&& git clone https://github.com/volatilityfoundation/dwarf2json.git \
&& cd dwarf2json \
&& /usr/local/go/bin/go build; \
&& CC=gcc /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; \
Expand Down

0 comments on commit 0097092

Please sign in to comment.