2023-12-01 17:32:19 +00:00
|
|
|
FROM ubuntu:20.04
|
|
|
|
|
|
|
|
# Tell apt not to prompt us for anything.
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
2017-12-07 22:41:14 +00:00
|
|
|
|
2021-10-13 18:00:37 +00:00
|
|
|
# Install utilities, libraries, and dev tools.
|
|
|
|
RUN apt-get update && apt-get install -y apt-utils
|
|
|
|
RUN apt-get install -y \
|
|
|
|
curl \
|
2023-12-01 17:32:19 +00:00
|
|
|
build-essential cmake git ninja-build 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".
|