Files
sparsebundlefs-mirror/Dockerfile.linux-gcc
Tor Arne Vestbø 1d65325a8b Add basic infrastructure for doing 32 and 64-bit GCC builds on macOS
Using make to do the platform selection is admittedly abusing the
hammer beyond any sort of sanity, but was a fun exercise ;)
2018-09-08 22:15:03 +02:00

13 lines
204 B
Docker

FROM ubuntu:16.04
ARG arch
RUN dpkg --add-architecture $arch && \
apt-get update && \
apt-get install -y \
build-essential \
g++-multilib \
pkg-config:$arch \
libfuse-dev:$arch \
fuse:$arch