Skip to content

Commit

Permalink
fix(docker): add cross toolchain for x86 into linux container
Browse files Browse the repository at this point in the history
Signed-off-by: AtomicFS <vojtech.vesely@9elements.com>
  • Loading branch information
AtomicFS committed Nov 6, 2024
1 parent 81a433e commit b023bf9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends \
gcc-${GCC_VERSION}-aarch64-linux-gnu; \
fi && \
if [ "${TARGETARCH}" = 'arm64' ]; then \
apt-get install -y --no-install-recommends \
gcc-${GCC_VERSION}-x86-64-linux-gnu; \
fi && \
apt-get install -y --no-install-recommends \
less \
nano \
Expand Down

0 comments on commit b023bf9

Please sign in to comment.