mirror of
https://github.com/torarnv/sparsebundlefs.git
synced 2025-12-13 20:36:45 +01:00
14 lines
212 B
Docker
14 lines
212 B
Docker
FROM ubuntu:16.04
|
|
|
|
ARG arch
|
|
|
|
RUN dpkg --add-architecture $arch && \
|
|
apt-get update && \
|
|
apt-get install -y \
|
|
build-essential \
|
|
git \
|
|
g++-multilib \
|
|
pkg-config:$arch \
|
|
libfuse-dev:$arch \
|
|
fuse:$arch
|