2018-08-15 00:21:29 +00:00
|
|
|
FROM fedora:28
|
2017-12-07 22:41:14 +00:00
|
|
|
|
|
|
|
# Update, and install basic packages.
|
|
|
|
RUN yum install -y git python git curl gcc-c++ findutils bzip2 \
|
|
|
|
ncurses-compat-libs libatomic
|
|
|
|
|
|
|
|
# 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".
|