11 lines
307 B
Plaintext
11 lines
307 B
Plaintext
FROM debian:11
|
|
|
|
# Install utilities, libraries, and dev tools.
|
|
RUN apt-get update && apt-get install -y apt-utils
|
|
RUN apt-get install -y \
|
|
curl \
|
|
build-essential cmake git ninja-build python3
|
|
|
|
# Build and run this docker by mapping shaka-packager with
|
|
# -v "shaka-packager:/shaka-packager".
|