2018-08-15 00:21:29 +00:00
|
|
|
FROM ubuntu:18.04
|
2017-12-07 22:41:14 +00:00
|
|
|
|
2021-10-13 18:00:37 +00:00
|
|
|
# Install utilities, libraries, and dev tools.
|
|
|
|
RUN apt-get update && apt-get install -y apt-utils
|
|
|
|
RUN apt-get install -y \
|
|
|
|
curl \
|
2021-10-12 21:55:13 +00:00
|
|
|
libc-ares-dev \
|
2021-10-13 18:00:37 +00:00
|
|
|
build-essential git python python3
|
2017-12-07 22:41:14 +00:00
|
|
|
|
|
|
|
# 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".
|