shaka-packager/packager/testing/dockers/OpenSUSE_Dockerfile

15 lines
418 B
Plaintext

FROM opensuse/leap:15.5
# Install utilities, libraries, and dev tools.
RUN zypper in -y \
curl which \
cmake gcc9-c++ git ninja python3
# OpenSuse 15 doesn't have the required gcc 9+ by default, but we can install
# it as gcc9 and symlink it.
RUN ln -s g++-9 /usr/bin/g++
RUN ln -s gcc-9 /usr/bin/gcc
# Build and run this docker by mapping shaka-packager with
# -v "shaka-packager:/shaka-packager".