mirror of
https://github.com/torarnv/sparsebundlefs.git
synced 2026-03-03 18:28:07 +01:00
Using make to do the platform selection is admittedly abusing the hammer beyond any sort of sanity, but was a fun exercise ;)
13 lines
204 B
Docker
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
|