16 lines
418 B
Plaintext
16 lines
418 B
Plaintext
FROM archlinux:latest
|
|
|
|
# Install utilities, libraries, and dev tools.
|
|
RUN pacman -Sy --needed --noconfirm \
|
|
core/which \
|
|
c-ares \
|
|
gcc git python2 python3
|
|
|
|
# Install depot_tools.
|
|
WORKDIR /
|
|
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".
|