2021-10-13 18:00:37 +00:00
|
|
|
FROM archlinux:latest
|
2017-12-07 22:41:14 +00:00
|
|
|
|
2021-10-13 18:00:37 +00:00
|
|
|
# Install utilities, libraries, and dev tools.
|
2023-08-22 01:41:18 +00:00
|
|
|
RUN pacman -Suy --needed --noconfirm \
|
2021-10-13 18:00:37 +00:00
|
|
|
core/which \
|
2023-07-17 20:16:03 +00:00
|
|
|
cmake gcc git ninja python3
|
2022-03-09 00:46:18 +00:00
|
|
|
|
2017-12-07 22:41:14 +00:00
|
|
|
# Build and run this docker by mapping shaka-packager with
|
|
|
|
# -v "shaka-packager:/shaka-packager".
|