16 lines
450 B
Plaintext
16 lines
450 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 \
|
|
libc-ares-dev \
|
|
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".
|