9 lines
190 B
Docker
9 lines
190 B
Docker
FROM i386/debian:sid
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get install -y tar unzip wget git build-essential ninja-build cmake
|