15 lines
426 B
Plaintext
15 lines
426 B
Plaintext
FROM debian:9
|
|
|
|
# Install utilities, libraries, and dev tools.
|
|
RUN apt-get update && apt-get install -y apt-utils
|
|
RUN apt-get install -y \
|
|
curl \
|
|
build-essential git python python3
|
|
|
|
# Install depot_tools.
|
|
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".
|