# Older versions of OpenSUSE (like leap 15) have compilers too old for C++17.
# Tumbleweed is a rolling release system, but that's our only option now.
FROM opensuse/tumbleweed:latest
# Install utilities, libraries, and dev tools.
RUN zypper in -y \
curl which \
c-ares-devel \
cmake gcc-c++ git python3
# Build and run this docker by mapping shaka-packager with
# -v "shaka-packager:/shaka-packager".