|
FROM archlinux:latest
|
|
|
|
# Install utilities, libraries, and dev tools.
|
|
RUN pacman -Sy --needed --noconfirm \
|
|
core/which \
|
|
c-ares \
|
|
cmake gcc git make python3
|
|
|
|
# Build and run this docker by mapping shaka-packager with
|
|
# -v "shaka-packager:/shaka-packager".
|