shaka-packager/packager/testing/dockers/Ubuntu_Dockerfile

16 lines
454 B
Plaintext

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