shaka-packager/packager/testing/dockers/Ubuntu17_Dockerfile

13 lines
361 B
Plaintext

FROM ubuntu:17.10
# 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".