2023-12-01 17:32:19 +00:00
|
|
|
FROM alpine:3.12
|
2018-08-15 00:21:29 +00:00
|
|
|
|
2021-10-13 18:00:37 +00:00
|
|
|
# Install utilities, libraries, and dev tools.
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
bash curl \
|
2023-12-01 17:32:19 +00:00
|
|
|
bsd-compat-headers linux-headers \
|
|
|
|
build-base cmake git ninja python3
|
2021-10-13 18:00:37 +00:00
|
|
|
|
2018-08-15 00:21:29 +00:00
|
|
|
# Build and run this docker by mapping shaka-packager with
|
|
|
|
# -v "shaka-packager:/shaka-packager".
|