13 lines
355 B
Plaintext
13 lines
355 B
Plaintext
|
FROM ubuntu
|
||
|
|
||
|
# Update, and install basic packages.
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y build-essential curl git python
|
||
|
|
||
|
# 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".
|