2020-12-14 19:50:20 +00:00
|
|
|
FROM opensuse/leap:15
|
2017-12-07 22:41:14 +00:00
|
|
|
|
|
|
|
# Update, and install basic packages.
|
2020-12-14 19:50:20 +00:00
|
|
|
RUN zypper in -y git python python-xml git curl gcc-c++ tar libncurses5
|
2017-12-07 22:41:14 +00:00
|
|
|
|
|
|
|
# Install depot_tools.
|
|
|
|
WORKDIR /
|
|
|
|
RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
|
|
|
ENV PATH /depot_tools:$PATH
|
|
|
|
|
|
|
|
# Build and run this docker by mapping shaka-packager with
|
|
|
|
# -v "shaka-packager:/shaka-packager".
|